Jump to content

Basic question - hopefully!


siblood

Recommended Posts

Hi. I am new to PHP. I want to create a basic form that will allow a user to enter a "Student ID". I then want to search the database "students" and retrieve records based on this value into a new page. It seems so simple, but once I have seen how this is done, I am sure I will get into how PHP does things. Can anyone help? It will be greatly appreciated!

 

Kind regards,

 

Simon.

Link to comment
Share on other sites

<?php
if(isset($_POST['submit']))
{
$id = mysql_real_escape_string($_POST['id']);
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM database WHERE studentid = '{$id}'"));
echo $row['details'];
exit();
}
?>
<form action="<?php $_SERVER['PHP_SELF']; ?>" method="post">
Student id:<input type="text" name="id"/>
<input type="submit" name="submit" value="Go!"/>
</form>

simple , and needs tweaking to ure db

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.