Re: [PHP-DB] Going bonkers again ...

2001-03-23 Thread olinux
m: "Martin Skjldebrand" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 23, 2001 11:15 AM Subject: [PHP-DB] Going bonkers again ... Going bonkers again ... I have this in a script. ?php file://view jobs script include("../includes/connect.inc.php"); file:

Re: [PHP-DB] Going bonkers again ...

2001-03-23 Thread Martin Skjöldebrand
olinux wrote: You have to escape your "" $query = "SELECT m_sender, m_date, m_subject FROM messages WHERE m_id = '$m_id'"; try this $query = "SELECT m_sender, m_date, m_subject FROM messages WHERE m_id = \"$m_id\" "; No that isn't the problem. It is valid to change quotation

Re: [PHP-DB] Going bonkers again ...

2001-03-23 Thread JJeffman
er get the " ' " off and the query will run ok. HTH. Jayme. -Mensagem Original- De: Martin Skjldebrand [EMAIL PROTECTED] Para: [EMAIL PROTECTED] Enviada em: sexta-feira, 23 de maro de 2001 16:15 Assunto: [PHP-DB] Going bonkers again ... Going bonkers again ... I have this in