I am trying to show the data coming from mysql database as a table format using php like this
$query = "SELECT CONCAT(usrFirstname,'',usrSurname) As FullName,usrNickname AS Nickname,";
$query.= "usrEmail As EmailAddress,usrGender AS Gender,DATE(usrDOB) As DOB,usrBelt AS BeltId,ggName As Groupname ";
$query.= "FROM user LEFT JOIN gyg ON user.usrIndex = gyg.usrIndex;";
$result = mysql_query($query);
echo mysql_error();
if($result)
{
$row= mysql_fetch_array($result);
if($row)
{
$fullname = $row['FullName'];
$nickname = $row['Nickname'];
$emialid = $row['EmailAddress'];
$gender = $row['Gender'];
$Dateofbirth = $row['DOB'];
$belt = $row['BeltId'];
$group = $row['Groupname'];
}
}
and the html code is like this
<table height= "600" width="800">
<tr style="vertical-align: top; text-align:top display:inline-block">
<thead>
<td>FUll name</td><td> Nickname<?php echo $nickname ?></td><td>Email Address<?php echo $emialid ?></td><td>Gender<?php echo $gender ?></td><td>DOB <?php echo $Dateofbirth ?><td>BELT ID <?php echo $belt ?></td><td>GROUP <?php echo $group ?></td>
</thead>
</tr>
</table>
i want to show like this
fullname nickname emailid gender dob beltid group
xxxxx xxxxx xxxxx xxx xxx xxx xxxx
xxxxx xxxxx xxxxx xxx xxx xxx xxxx
but it was displaying like this
fullname xxxxx nickname xxxxx emailid xxxxx gender xxxxx dobxxxxx beltid xxxxx groupxxxxx
and i have four rows coming form database but it was displaying only one row
how to i solve this problem can any help on this......
Modified code : it was displaying like this
fullname nickname emailid gender dob beltid group
xxxxx xxxxx xxxxx xxx xxx xxx xxxx
xxxxx xxxxx xxxxx xxx xxx xxx xxxx
what i have to do pls help
