PHP Code:
<?php
$db = mysql_connect("MySQLHOST", "u70001653", "8154f5");
mysql_select_db("d60001233",$db);
$query = "SELECT * FROM newuser ORDER BY entrydate";
$sql_query =mysql_query($query,$db);
$row=mysql_fetch_array($sql_query);
?>
<?
<table>
while($row = mysql_fetch_array($sql_query, MYSQL_ASSOC))
{
?>
<tr>
<td><? echo $row["fullname</td>
<td><? echo $row["address"];?></td>
<td><? echo $row["admincheck"];?></td>
<td><? echo $row["entrydate"];?></td>
</tr>
<?
}
?>
</table>
When we run this code then it produce list form second record. How can I get first record from Table?
Any Idea!