close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Date format on insert

Thread began 9/22/2022 4:42 pm by Steve Copelin | Last modified 8/02/2023 11:49 am by Ray Borduin | 204 views | 6 replies |

Steve Copelin

Date format on insert

Using the MySQLi server behaviors and the insert function, I have the date as a date picker in DW.
The small issue I'm scratching my head with is when the date is displayed on php page is DD-MM-YYY (Australian format). When the date inserts into the MYSQL Db is swings it to YYYY-MM-DD. As I'm trying to query using a URL variable, I get no results due to the difference.

I've been looking at trying to modify the $InsertQuery statement, so to switch formats on insert, but having no luck with it.

$InsertQuery->bindColumn("date", "s", "".((isset($_POST["date"]))?$_POST["date"]):"") ."", "WA_DEFAULT");

Any help would be great.
Steve

Sign in to reply to this post

Ray BorduinWebAssist

Update this:

$InsertQuery->bindColumn("date", "s", "".((isset($_POST["date"]))?$_POST["date"]):"") ."", "WA_DEFAULT");

to this:

$InsertQuery->bindColumn("date", "t", "".((isset($_POST["date"]))?$_POST["date"]):"") ."", "WA_DEFAULT");

"s" is for "string" and "t" is for "time".... If you use the correct data type it will automatically convert the date to the correct format to work with mySQL.

Sign in to reply to this post
Did this help? Tips are appreciated...

Steve Copelin

Thanks Ray
I should have added that i'm just using a varchar field for the date at the moment and not a Date formatted one.
Tried the above and no joy, i'm now wondering if the format in DW is the issue

Sign in to reply to this post

Ray BorduinWebAssist

I'd switch to a date field in the database and I think that will help since you are dealing with a date.

Sign in to reply to this post
Did this help? Tips are appreciated...

Jimmm

Inspiration

You guys inspired me with this last post.....I'm going to try and use Server Behaviors to "fork" phpNFLPickem.....Can't wait to get started.....Ray, a coffee is coming ur way!!.....Thx again!

Sign in to reply to this post

Owen

MYSqli Date format glitching on insert

I am doing this with the "t" however it is not inserting the correct data value into the mysql table. I get 1969-12-31 ...

The form variable data has 2023-01-29

$InsertQuery->bindColumn("Event", "t", "".((isset($_POST["Event"]))?$_POST["Event"]:"") ."", "WA_DEFAULT");

any thoughts?





Originally Said By: Ray Borduin
  Update this:

$InsertQuery->bindColumn("date", "s", "".((isset($_POST["date"]))?$_POST["date"]):"") ."", "WA_DEFAULT");

to this:

$InsertQuery->bindColumn("date", "t", "".((isset($_POST["date"]))?$_POST["date"]):"") ."", "WA_DEFAULT");

"s" is for "string" and "t" is for "time".... If you use the correct data type it will automatically convert the date to the correct format to work with mySQL.  
Sign in to reply to this post

Ray BorduinWebAssist

What is the value of $_POST["Event"] ? If that value is bad then the code wouldn't convert the time properly. You may want to use "WA_NULL" instead of "WA_BLANK" since a blank date would default to that 1969 date you have.

Sign in to reply to this post
Did this help? Tips are appreciated...

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...