| | |
Date Conversion
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
•
•
Join Date: Apr 2009
Posts: 257
Reputation:
Solved Threads: 37
apply substring function
PHP Syntax (Toggle Plain Text)
$day=substr("04242009", 0, 1); $month=substr("04242009", 2, 3); $year=substr("04242009", 4, 7); $mydate=$year."-".$month."-".$day; $converted_date=date($mydate,'F d, Y');
Last edited by BzzBee; Apr 27th, 2009 at 2:14 am.
•
•
Join Date: Dec 2007
Posts: 54
Reputation:
Solved Threads: 1
Thanks for pointing me in the right directions. I had to make some changes to your code and this is what I finally ended up with.
WBR
WBR
PHP Syntax (Toggle Plain Text)
$chopDate =” 04242009"; $month=substr($chopDate, 0, 2); $day=substr($chopDate, 2, 2); $year=substr($chopDate, 4, 7); $myDate=$month . "/" . $day . "/" . $year; $printDate = date("jS F, Y", strtotime ($myDate)); print ("<h3> <center>$printDate </center></h3>");
![]() |
Similar Threads
- VS Application/Access Db Date Conversion Issues - Very Weird (VB.NET)
- Date conversion (VB.NET)
- date conversion using php (PHP)
- Conversion (VB.NET)
- conversion of text file into data base file (Visual Basic 4 / 5 / 6)
- help on data type conversion (Visual Basic 4 / 5 / 6)
- Need help with this conversion program (C++)
Other Threads in the PHP Forum
- Previous Thread: How To Create A Free Web Host
- Next Thread: XML to PHP Help!
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cron curl database date directory display download dynamic echo email encode error fcc file files folder form forms function functions google howtowriteathesis href htaccess html image images include insert integration ip java javascript joomla ldap limit link login loop mail menu methods mlm mod_rewrite multiple mysql oop open parse paypal pdf php problem query radio random recursion regex remote script search select server sessions sms soap source space speed sql structure syntax system table template tutorial update upload url validation validator variable video web xml youtube





