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! Link to comment https://forums.phpfreaks.com/topic/39586-solved-sql-query-for-date/ 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 Link to comment https://forums.phpfreaks.com/topic/39586-solved-sql-query-for-date/#findComment-191016 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>"; Link to comment https://forums.phpfreaks.com/topic/39586-solved-sql-query-for-date/#findComment-191020 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. Link to comment https://forums.phpfreaks.com/topic/39586-solved-sql-query-for-date/#findComment-191065 Share on other sites More sharing options...
mmarif4u Posted February 22, 2007 Share Posted February 22, 2007 You Welcom Link to comment https://forums.phpfreaks.com/topic/39586-solved-sql-query-for-date/#findComment-191066 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.