Im currently using phpmyadmin as my sql database
i cant seem to save 2 dates on my single table when i insert dates
the other 1 turns to 0000-00-00
and the other one saves the current date
this is my code for insert as you see the "sqlinsert" is in module. my datestocked wont get insert but my expdate does
sqlinsert("tblproducts", "code, prodname, datestocked, prodtype, prodqty, prodprice, expdate",
"'" + txtprodcode.Text + "', '" + txtprodname.Text + "', '" + datestocked.Text + "','" + txtprodtype.Text + "', '" + txtprodqty.Text + "', '" + txtprodprice.Text + "', '" + expdate1.Text + "'")
Guys can you help me organize too im just a newbie here