pelegk2 Posted December 16, 2003 Share Posted December 16, 2003 am working php+mySql i am trying to do a simple insert command : $query2=\"INSERT INTO tblPrint (OrderNum,PrinterNum,DateTimeVal) Values(\'$order_num\',\'$radio\',\'$tmpDateTimeVal\')\"; when i havethis values : $order_num=313.517; $radio=1; $tmpDateTimeVal=date(\"Y-m-d H:i:s\"); when i check the mysql i see that the order_num value is for some reason 3.517 ?!?!?!?!?! why is that?any idea???? the more intresting if i do the same line with the same values it tels me its a duplicate key!!!!!! but if i chek it from php with a select it tells m that that vakue dosent exist!!!!!!!! help dont know what else to do! after i did al of tht i did : i changed the varchar to size 11it at last put the data but when i do : select * from tblprint where ordernum like \'%313.1729%\' bu i get 0 records!!!why?????? Link to comment https://forums.phpfreaks.com/topic/1508-very-strange-problem-with-insert-command/ Share on other sites More sharing options...
Influx Posted December 22, 2003 Share Posted December 22, 2003 Try this... If this is part of your script add it here... $order_num=313.517; $radio=1; $tmpDateTimeVal=date("Y-m-d H:i:s"); $query2 = mysql_query("INSERT INTO tblPrint (OrderNum, PrinterNum, DateTimeVal) Values (\'$order_num\',\' $radio\', \'$tmpDateTimeVal\' )"); Link to comment https://forums.phpfreaks.com/topic/1508-very-strange-problem-with-insert-command/#findComment-5057 Share on other sites More sharing options...
pelegk2 Posted December 22, 2003 Author Share Posted December 22, 2003 Link to comment https://forums.phpfreaks.com/topic/1508-very-strange-problem-with-insert-command/#findComment-5059 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.