The connection is successful but the data are not getting inserted into the 
table. I need to insert all the words into the table.
When I change the insert statement with one insert at a time, I can  insert 
values to the database. For exampel:

$qure = "INSERT INTO dict VALUES (1,'apple')";

Do I need to check the formatted data in the file?

Can any one help me in this regard?

I have been working in VC++ for some time.


Replace

$str =  mysql_query($qure);

with

$str =  mysql_query($qure) or die(mysql_error());

I bet there is an enquoting problem with the data you want to insert...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to