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 characters. Double quote ( " ) around 
single quotes ( ' ) are OK. Nevertheless I tried your tip and got the same 
result.

M.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to