mysql help

i see record all mysql in table.
my total record 20 saved in mysql and i see all record in table 4 colums and 5 rows how can this.

I am going to go with,

What???

send pictures how looking like this


What query are you attempting to run?

What is the structure of you database?

<?php require('config.php'); $query = "Select * from schoolrecd"; $result = mysql_query($query); while($row = mysql_fetch_array($result)){ ?> <?php

}
?>

Id: <?PHP echo $row["id"] ?>
Name : <?PHP echo $row["name"] ?>
F-Name : <?PHP echo $row["fname"] ?>
Gender : <?PHP echo $row["gender"] ?>
age : <?PHP echo $row["age"] ?>

If you are selecting everything from the table, then yes, everything will display.

Sponsor our Newsletter | Privacy Policy | Terms of Service