]>
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(
* 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
/*
$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