"Jeffrey N Dyke" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> >$result=mysql_db_query("usr_172_1","UPDATE artikel SET Preis='\$preis\'
> WHERE ID='\$id\'");
> >//mysql_error($result);
>
> Here you're escaping the $ and then the ', have you tried
>
> $result=mysql_db_query("usr_
>$result=mysql_db_query("usr_172_1","UPDATE artikel SET Preis='\$preis\'
WHERE ID='\$id\'");
>//mysql_error($result);
Here you're escaping the $ and then the ', have you tried
$result=mysql_db_query("usr_172_1","UPDATE artikel SET Preis='{$preis}'
WHERE ID='{$id}'");
with those escapes th