Re: bugs with Widows Me

2002-11-19 Thread Nicholas Elliott
]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 19, 2002 10:06 AM Subject: bugs with Widows Me > /* >$var="some long text" >or >$var='some long text' > */ > > if (!mysql_query("INSERT INTO table(field) VALUES($var)")) die(

Re: bugs with Widows Me

2002-11-19 Thread Roger Baklund
* Erumba Gotha Henri > /* >$var="some long text" >or >$var='some long text' > */ The kind of quoting used within PHP does not matter to mysql. > if (!mysql_query("INSERT INTO table(field) VALUES($var)")) die("Always > die"); > > /* >1. MySQL doesn't insert the content of the varia

bugs with Widows Me

2002-11-19 Thread Erumba Gotha Henri
/* $var="some long text" or $var='some long text' */ if (!mysql_query("INSERT INTO table(field) VALUES($var)")) die("Always die"); /* 1. MySQL doesn't insert the content of the variable $var into the field table wich is a VARCHAR type or TEXT type 2. table contains other fields - t