* Thus wrote Jeff McKeon ([EMAIL PROTECTED]):
> Actually, here's the problem I get with using global variables in a
> mysql_query string..
> 
> [error begin]
> PHP Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE,
> expecting T_STRING or T_VARIABLE or T_NUM_STRING 
> [error end]
> 
> [code begin]
> $query="SELECT * from tickets where VesselID='$_GET['vesselid']' order
> by Status DESC, Created ASC";
> [code end]

Enclose the var in curly brackets:

$query="SELECT * from tickets where VesselID='{$_GET['vesselid']}' order


Curt
-- 
List Stats: http://zirzow.dyndns.org/html/mlists/php_general/

"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to