<!DOCTYPE html> <html> <head> <title>Thanks for Joining</title> <meta charset=”UTF-8″> <meta name=”description” content=””> <meta name=”keywords” content=””> <link rel=”stylesheet” href=”bootstrap.css”> <link rel=”stylesheet” href=”style.css”> </head> <body> <?php $dsn = “mysql:host=localhost;dbname=proferik_Demo”; $username = “proferik_teacher”; $password = “Pa55word”; $db = new PDO($dsn, $username, $password); //$host = “localhost”; //$username = … Continued

View Slides Download Html Forms exercises files Download Html Forms finished from class ( Tuesday March 15th )   In the example bellow there is some simple HTML to crate a web form for capturing data. Basic Form Markup <form id=”myform” name=”theform” method=”POST” action=”<?php echo $_SERVER[‘PHP_SELF’]?>” class=”clearfix”> <br> … Continued