Hi, 1) I am facing a problem while fetching data from database. All data fetch except first record. I am using this coding. $sql = "select * from meta"; $i=0; while($row = mysql_fetch_query($sql)) { echo"<td>".$row.['id']."</td>"; echo"<td>".$row.['Title']."</td>"; echo"<td>".$row.['Description']."</td>"; echo"<td>".$row.['Keywords']."</td>"; } 2) I want to add a date column in my database in which, I want current date (either modification or insert). But it will not be system dependent like if, I edit my pc clock after that it will take right date. Please help me give solution of above problems.
1) Problem is resolved. It is due to my fault coz, I already fetched first record before loop. But still, I am waiting for 2) problem solution.
well the second one is not problem.......since in local development you can change the pc's clock but in server it doesn't applies.....