Hello does anyone know how to bring details from a database into a textbox? becuase ive got the login working and it displays whos logged in but i want the postcode to appear in a textbox, the postcode is kept in mysql table called address.
/after connecting to mysql
$query = "SELECT * FROM StudentRecords WHERE Email= '".$myusername."'";
$result = mysql_query($query);
<td><input type="text" name="PickupAddressPostCode"</td>