THEME COLOR
I am trying to convert a date from yyyy-mm-dd to dd-mm-yyyy (but not in SQL); however I don't know how the date function requires a timestamp, and I can't get a timestamp from this string.
How is this possible?
Use Can Use strtotime() and date():
strtotime()
date()
$originalDate = "2010-03-21"; $newDate = date("d-m-Y", strtotime($originalDate));
(see strtotime and date docs on the PHP site).
Post Your Answers
Bootstrap contact form background only around form
startsWith() and endsWith() functions in PHP
विश्व में सर्वाधिक बड़ा, छोटा, लम्बा एवं ऊँचा की सूची क्या है ..?
How to make the number pyramid pattern in PHP
How do you parse and process HTML/XML in PHP?
How can I get a date after 15 days/1 month in PHP?
Adding 1 hour to time variable
पृथ्वी पर जल के वितरण को मानचित्र की सहायता से स्पस्ट कीजिये|
Get a substring between two strings in PHP
How to calculate the difference between two dates using PHP?
How to find Page Title and meta content of HTML , using PHP
What is local by flywheel. ? Introduce local by flywheel in Details
Executing multiple SQL queries in one statement with PHP
Bootstrap Datepicker - Months and Years Only
what is array ? how to use array in programming Language
PHP calculate age
jQuery AJAX Autocomplete – Country
How to list all files and folders in directory using PHP
How to Upload PHP Project from Local System Wampserver to linux Server and run
वायुमंडल किसे कहते है ? वायुमंडल के गैसों के घटक को बृत में दिखलाइये|
How to Create Tables in MySQL Database Using PHP?
Write a program that reads a string and then prints a diamond shaped array based on the characters of the string.
जल - चक्र किसे कहते है?
How to create ZIP archives using PHP and download
Converting Text to Image using php script for captcha code concept
किसी एक मंडल के न होने से क्या - क्या कठिनाइयाँ होगी| लिखिए|
PHP set cookie lifetime
List the four developer practices of XP.
Jquery focus out after pressing enter key
झारखंड में कुल कितने प्रमंडल है, इसका मुख्यालय कहाँ है इसके अंतर्गत कौन कौन से जिले आते है|
How many types we show dates in PHP ie Formatting of date function in PHP . ?
How can I prevent SQL-injection in PHP?
How Do I Talk to a Live Person at Microsoft?
Your Answer