|
Posted by Peschtra on 06/01/06 00:21
Strawberry -
Thanks for your help.
I don't know what it means for something to be automated. :(
I changed my script as you suggested and found one missing ' (where you
suggested in your previous post), but still no luck.
Thanks again,
Peter
I don't know what
strawberry wrote:
> Marcin's right, 'a query like that is just begging to be automated'
> but, in any event, writing the query something like this would make
> those kind of mistakes much easier to spot;
>
> $query = "INSERT INTO table
> (
> value1, //you can even add comments
> value2,
> value3
> )
> VALUES
> (
> 'value1',
> 'value2',
> 'value3'
> );";
>
> mysql_query($query) etc
>
[Back to original message]
|