Lautarox Posted July 2, 2008 Share Posted July 2, 2008 Well.. im triyin to make a a type of date, stored in mysql that can be formatted as its setted in the db, well, how do you recommend me to store the date value? in wich type of mysql data type? wich method in php? Thanks! Link to comment https://forums.phpfreaks.com/topic/112863-solved-help-with-date-in-phpmysql/ Share on other sites More sharing options...
deadlyp99 Posted July 2, 2008 Share Posted July 2, 2008 I personally just translate php time() into a date using something like: $t = time(); $d = date("m/d/Y",$t); Then I will just store the $t variable in the database as an integer and use php to change it into a date as needed. Link to comment https://forums.phpfreaks.com/topic/112863-solved-help-with-date-in-phpmysql/#findComment-579723 Share on other sites More sharing options...
Lautarox Posted July 2, 2008 Author Share Posted July 2, 2008 Thanks, ill give it a try Link to comment https://forums.phpfreaks.com/topic/112863-solved-help-with-date-in-phpmysql/#findComment-579727 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.