Search results

  1. F

    PHP Code for retrieving data from database?

    Please tell me what php code should be used in retrieving a data directly from the database especially the primary key. It's like this. The customer will register himself/herself then when he/she clicks "submit" he/she will then see his/her profile.. How am i supposed to retrieve even just the...
  2. F

    Please debug my php code?

    <html> <head> <title> Input Records </title> </head> <?php if(isset($_GET['submit'])) { $db = mysql_connect('localhost', 'JJGV', 'it213'); mysql_select_db('project') or die( "Unable to select database"); $studno = $_GET['studno']; $fname = $_GET['fname']; $lname = $_GET['lname']; $course =...
Back
Top