Search results

  1. G

    Add PHP to HTML page?

    PHP code starts and ends like this... <?php ?> Insert the code in the middle that you want
  2. G

    Problem with PHP/MySQL Registration Script?

    if(isset($_POST['submit'])) { mysql_connect('localhost', 'username', 'password', 'database'); $fname = $_POST['fname']; $lname = $_POST['lname']; $email = $_POST['email']; $phone = $_POST['phone']; $dirtystuff = array("\", "/", "*", "'", "=", "-", "#", ";", "<", ">", "+", "%")...
Back
Top