| | |
Date Conversion
Thread Solved |
•
•
Join Date: Apr 2009
Posts: 275
Reputation:
Solved Threads: 39
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 1:14 am.
•
•
Join Date: Dec 2007
Posts: 73
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!
Views: 391 | Replies: 3
| Thread Tools | Search this Thread |
Tag cloud for PHP
access ajax apache api archive array arrays auto binary box buttons cakephp cart check checkbox class classes cms code combobox database date development directory display download dropdown dropdownlist drupal dynamic echo email error file files form forms functions header hosting href htaccess html image include insert integration ip java javascript joomla jquery limit link login loop mail menu mlm mod_rewrite multiple mysql order parse password paypal php problem query radio recursion redirect regex remote rows script search select server session sort source sql string structure syntax table tutorial update updates upload url user validation variable video web website wordpress xml





