Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6883543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:23:47+00:00 2026-05-27T05:23:47+00:00

In the user interface, i have a text field to enter date in dd/mm/yyyy

  • 0

In the user interface, i have a text field to enter date in dd/mm/yyyy format and there is another textbox for time in hh:mm format and another dropdown box to specify am or pm. All these three fields will let the user to enter the date,time and am/pm manually. I prefered to use this primitive method as per the requirement of the project.

Now i want all these values to be added in mysql in timestamp format to make it easier to fetch and manipulate. Please suggest me how can i achieve this.

<?
$date = '21'.'/'.'11'.'/'.'2011';
$time = '12'.':'.'00';
$ampm = "am";
$dt = DateTime::createFromFormat(
    'd/m/Y h:i a',
 sprintf('%s %s %s', $date, $time, $ampm),
   new DateTimeZone('Country/Region'));



$mysqlDateString = $dt->format('Y-m-d H:i:s');


?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:23:48+00:00Added an answer on May 27, 2026 at 5:23 am

    Use mktime in conjunction with the correct format to date by sending your user input to explode, like so:

    $date = '22/11/2011'; $date_pieces = explode( '/', $date);
    $time = '08:35'; $time_pieces = explode( ':', $time);
    $am_pm = 'PM';
    
    $mysql_timestamp = date( 'Y-m-d H:i:s', mktime( 
        $time_pieces[0] + ( $am_pm == 'AM' ? -12 : 12), // Hour - Convert AM/PM to 24-hr format
        $time_pieces[1], // Minute
        0, // Second
        $date_pieces[1], // Month
        $date_pieces[0], // Day
        $date_pieces[2])); // year
    

    Now $mysql_timestamp is a valid entry for a datetime column.

    If you need a UNIX timestamp, just remove the call to date, like so:

    $unix_timestamp = mktime( 
        $time_pieces[0] + ( $am_pm == 'AM' ? -12 : 12), // Hour - Convert AM/PM to 24-hr format
        $time_pieces[1], // Minute
        0, // Second
        $date_pieces[1], // Month
        $date_pieces[0], // Day
        $date_pieces[2]);
    

    Demo

    Edit: As per Phil’s comments below, be sure to set a correct timezone with date_default_timezone_set.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my application, I have a large text field that allows the user to
I have a UIView where has so many elements like Text Field, Date Picker,
A lot of JavaScript libraries have user interface widgets. Usually they are created after
I have a user interface in .net which needs to receive data from a
I always have trouble designing the user interface when it come to manage a
I have to make a graphical user interface application using the language of my
I have a fairly large application that uses WPF for its user interface. I
Applications which run on mobile devices have special user interface requirements. I think Apple
I have a custom WinForms control (inherits from control, i.e. without user interface jsut
I have a function that presents the user a combo-box. def select_interface(interfaces) list_box :items

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.