pixeltrace Posted February 22, 2007 Share Posted February 22, 2007 guys, i need help, i have a field in my database date_posted (date) 0000-00-00 what should be in my query if i wanted just to get the value of the day? let say <? $uSql = "SELECT date_posted(i just wanted to get the day) FROM dates"; $uResult = mysql_query($uSql, $connection); if(!$uResult){ echo 'no data found'; }else{ while($uRow = mysql_fetch_array($uResult)){ ?> whats the correct query for this? thanks! Quote Link to comment Share on other sites More sharing options...
Jessica Posted February 22, 2007 Share Posted February 22, 2007 you can do it in php using strtotime() and date() or use mysql date_format: http://dev.mysql.com/doc/refman/4.1/en/date-and-time-functions.html Quote Link to comment Share on other sites More sharing options...
mmarif4u Posted February 22, 2007 Share Posted February 22, 2007 guys, i need help, i have a field in my database date_posted (date) 0000-00-00 what should be in my query if i wanted just to get the value of the day? let say <? $uSql = "SELECT date_posted(i just wanted to get the day) FROM dates"; $uResult = mysql_query($uSql, $connection); if(!$uResult){ echo 'no data found'; }else{ while($uRow = mysql_fetch_array($uResult)){ ?> whats the correct query for this? thanks! try this: $query = "SELECT DATE_FORMAT(access.date_posted, '%d')As formatteddate1 FROM access where icnumber='000000-00-1234' "; Change ur table name where i put access. Then acho it like this: echo "<td>" . $row['formatteddate1'] . "</td></font>"; Quote Link to comment Share on other sites More sharing options...
pixeltrace Posted February 22, 2007 Author Share Posted February 22, 2007 thanks! my form is working fine now. Quote Link to comment Share on other sites More sharing options...
mmarif4u Posted February 22, 2007 Share Posted February 22, 2007 You Welcom Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.