Re: [PHP] mysql fails

2002-02-05 Thread val petruchek
> Suppress the error message: > $result = @mysql_query("sql statement",$db); DL Neil, thank you: INSERT IGNORE is exactly what i need. You helped me greatly! Matt, thaks you for help too, but my non-perfect english doesn't allow me to express my thoughts correctly. Thanks! Valentin Petruchek (

Re: [PHP] mysql fails

2002-02-05 Thread DL Neil
Hello val, > a have following mysql problem: > i need to execute several inserts at one query like this-> > > $sql->action("insert into words(word) values ('php'); > insert into words(word) values ('general'); > insert into words(word) values ('list');"); > > The word fild is unique > > My pro