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
स्पेक्ट्रम में किस रंग के प्रकाश का तरंगदैर्घ्य महत्तम और किस रंग के प्रकाश का तरंगदैर्घ्य न्यूनतम होता है। Which color of light has maximum wavelength in the spectrum and which color light has minimum wavelength?
पुरन्दर की सन्धि की प्रमुख शर्ते लिखिये। Write the main conditions of the Treaty of Purandar.
अयस्कों के समृद्धीकरण से क्या तात्पर्य है ? What is meant by enrichment of ores?
Why is the Android emulator so slow? How can we speed up the Android emulator?
When to use self vs $this in PHP Object Programming ?
How to create a MySQL database using PHP?
Warning (2): Illegal offset type [CORE\Cake\Model\Model.php, line 3054]
How many types of PHP Operators. Describe it
लैटेराइट मृदा (मिट्टी) किसे कहते है? इसके निर्माण और इसमें उगने वाली फसल के बारे में बताये ? What is laterite soil? Tell about its construction and the crops grown in it?
how to connecting mysql database in php
संक्षारण से बचने की तीन विधियों को लिखें। Write three methods of avoiding corrosion.
बायो गैस क्या है ? इसके अवयवों के नाम लिखें तथा इसके दो उपयोग बतावें। What is Bio Gas? Write the names of its components and state its two uses.
Describe four general strategies for dealing with deadlocks?
How to create logout page in php?
How to execute multiple SQL queries in MySQL Workbench?
How to get first 5 characters from string
Why shouldn't I use mysql_* functions in PHP?
What is NIC?
CBSE Board Class 12th Exam Time Table 2018.
1 फुट में कितने इंच होते हैं? How many inches are there in 1 foot?
मानव निर्मित पर्यावरण के कारण प्राकृतिक पर्यावरण को नुकसान पहुँचता है| कैसे?
CakePHP Retrieving rows for the current month
तत्त्वों के आवर्त वर्गीकरण के लिए परमाणु द्रव्यमान संख्या की अपेक्षा परमाणु संख्या को उत्तम आधार क्यों माना गया है ? Why is the atomic number considered a better basis than the atomic mass number for the periodic classification of elements?
How Add Day , Month , Year in PHP Date
भारत की नदियाँ -सूची,लंबाई,वर्ग,उद्गम स्थान,सहायक नदियाँ,प्रवाह क्षेत्र (सम्बन्धित राज्य) ,प्राचीन नाम,आधुनिक नाम
How to Create a table 2 to 20 using for loop in php
Internal Energy से सम्बंधित भौतिकी विज्ञानं में Thermodynamics का प्रथम नियम क्या है
व्यष्टि अर्थशास्त्र की प्रमुख विशेषताएँ लिखिए। Write the main features of microeconomics.
How to calculate age (in years) based on Date of Birth and getDate()
बहुव्रीहि समास किसे कहते हैं? What is Attributive Compound
Converting Text to Image using php script for captcha code concept
हमारे शरीर में वसा का पाचन कैसे होता है? यह प्रक्रम कहाँ होता है? How is the digestion of fat in our body? Where does this process take place?
Check if string contains specific words?
Can you use if/else conditions in CSS?
Simple Ajax Jquery script- How can I get information for each of the rows in the table?
How to center a div with Bootstrap2?
Partially hide email address in PHP
how to connect to sql server database using php?
How can I get a date after 15 days/1 month in PHP?
Horizontally center a div in a div
What is deadlock? What is starvation ? How do they differ from each other?
What is the name of the --> operator?
How do you use bcrypt for hashing passwords in PHP?
Why must the operating system be more careful when accessing input to a system call (or producing the result) when the data is in memory instead of registers ?
How to add 4 hours to time in PHP/MySQL
What do you mean by Data and Information ?
What's the use of ob_start() in php?
Most elegant way to clone a JavaScript object
.prop() vs .attr()
What is local by flywheel. ? Introduce local by flywheel in Details
Your Answer