HEREDOC help, going quietly nuts
HEREDOC help, going quietly nuts
am 20.10.2007 17:44:48 von NerdRevenge
with this code:
------------------------------------------
$sql = "select * from do_be_do where do_be_id = '$GET[id]'
limit 1";
$result = mysql_query($sql, $connection) or die (mysql_error());
$row = mysql_fetch_array ($result);
$title = stripslashes($row['title']);
$depends = stripslashes($row['depends']);
$detail<<
Re: HEREDOC help, going quietly nuts
am 20.10.2007 18:35:21 von Jake Barnes
On Oct 20, 11:44 am, bill wrote:
> with this code:
> $title = stripslashes($row['title']);
> $depends = stripslashes($row['depends']);
>
> $detail<<
>
Re: HEREDOC help, going quietly nuts
am 20.10.2007 19:06:10 von luiheidsgoeroe
On Sat, 20 Oct 2007 17:44:48 +0200, bill wrote:
> with this code:
> ------------------------------------------
> $sql =3D "select * from do_be_do where do_be_id =3D '$GET[id]' limi=
t 1";
> $result =3D mysql_query($sql, $connection) or die (mysql_error());
> $row =3D mysql_fetch_array ($result);
> =
> $title =3D stripslashes($row['title']);
> $depends =3D stripslashes($row['depends']);
>
> $detail<<
>
Re: HEREDOC help, going quietly nuts
am 20.10.2007 20:36:54 von NerdRevenge
Rik Wasmus wrote:
> On Sat, 20 Oct 2007 17:44:48 +0200, bill wrote:
>
>> with this code:
>> ------------------------------------------
>> $sql = "select * from do_be_do where do_be_id = '$GET[id]' limit 1";
>> $result = mysql_query($sql, $connection) or die (mysql_error());
>> $row = mysql_fetch_array ($result);
>>
>> $title = stripslashes($row['title']);
>> $depends = stripslashes($row['depends']);
>>
>> $detail<<
>>