Recent content by askernanswerer

  1. A

    Can someone convert this HTML code to work in Firefox?

    make sure java is enabled tools>>>option>>>content>>>enable java.
  2. A

    Why won't this php file work correctly ?

    <?php $s = $_POST['lname']; $x = file_get_contents("a.txt"); if (!strpos($x, $s)) { print("".$s ." is on the list"); } else { print("".$s. " is not on the list"); } ?>
  3. A

    Need help with some Code..gotta love HTML, right?

    put a hyphen between no and repeat. ...background-repeat:"no-repeat"...
  4. A

    My insert.php 4 inserting into database doesnt work here is the code below tell me

    here lies the problem: VALUES ('', $firstN, $lastN, $busName, $e_mail, $contactNo, $uname, $passw)"; it should be: VALUES ('',".$firstN.", ".$lastN.",". $busName.", ".$e_mail.",". $contactNo.", ".$uname.", ".$passw.")"; HAPPY CODING.
Back
Top