![]() |
|
What's the best way to store dates using html select fields? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: What's the best way to store dates using html select fields? (/Thread-What-s-the-best-way-to-store-dates-using-html-select-fields) Pages:
1
2
|
RE: What's the best way to store dates using html select fields? - AkarMathers13 - 08-14-2014 Why you want the database name and the table names? You can just tell me the idea or the code and I can type it out. So no need of database outputs, You can just instead of my table and database names, Say "test" for example. :/ And never mind I found it. RE: What's the best way to store dates using html select fields? - AkarMathers13 - 08-14-2014 Why you want the database name and the table names? You can just tell me the idea or the code and I can type it out. So no need of database outputs, You can just instead of my table and database names, Say "test" for example. :/ And never mind I found it. RE: What's the best way to store dates using html select fields? - Singularity_mybb_import13102 - 08-15-2014 Because you don't sound like you know anything of what you are getting into. Glad you "found" your solution, but if you did, you should share it, you know to help people out with similar questions browsing later /peace RE: What's the best way to store dates using html select fields? - Singularity_mybb_import13102 - 08-15-2014 Because you don't sound like you know anything of what you are getting into. Glad you "found" your solution, but if you did, you should share it, you know to help people out with similar questions browsing later /peace RE: What's the best way to store dates using html select fields? - AkarMathers13 - 08-17-2014 Thanks! This is what I did, Code: $date = date("Y-m-d", mktime(0, 0, 0, $month, $day, $year));RE: What's the best way to store dates using html select fields? - AkarMathers13 - 08-17-2014 Thanks! This is what I did, Code: $date = date("Y-m-d", mktime(0, 0, 0, $month, $day, $year)); |