Jump to content

Why my basic insertion won't work?


kyme

Recommended Posts

I was just playing insertion using PDO statement.

I just referred this tutorial and test it my code.

http://php.net/manual/en/pdo.prepared-statements.php

So I did but didn't work.  

 

Is there anything I miss? 

 

This is my Insertion: 

https://paste.ofcode.org/dxgTWNKJqcRdPZqvjjrxHf

 

My localhost db is connected and running in localhost. Anyway here is also my config.

https://paste.ofcode.org/32LafCUrBbJSiLDAfrQjaWM

 

I wonder why it won't insert in my local db. Did I missed something in my insertion code? 

Link to comment
Share on other sites

Not really.

 

Your connection code is fudged up. You need to get rid of this stupid try-catch stuff, because it exposes internal information and is just irritating. Error messages are meant for you, the developer, not your users. What on earth are your users supposed to do with a PDO error message? They'll just think that your application has a lot of problems.

 

Then you need to enable exceptions, so that messed up queries are immediately reported. Learn how PDO works.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.