Recent content by noBull

  1. N

    PHP > seems to be closing my PHP tag?

    <html> <head> <basefont face="Arial"> </head> <body> <?php // set server access variables $host = "localhost"; $user = "HANJER59"; $pass = "k2032K"; $db = "testdb"; // open connection $connection = mysqli_connect($host, $user, $pass, $db) or die ("Unable to connect!"); // create query $query...
  2. N

    Can you have 2 labels with the same name in HTML?

    such as: <p><label for="address">Address</label> <input type="text" id="address_first" /></p> <p><label for="address">*</label> <input type="text" id="address_second" /></p>
Back
Top