Well, I am using it in my boxbuild routines. There it works.
This is a snippet of the exact statement I am using. I left part of the codes out and replaced them with *** for clarity (Which works in the site I am constructing. Sorry not online yet):
$sql_query = "Select from ";
If ($AllSub==1) {
$SubQ = "";
} else {
$SubQ = " and subject.id = '$Sub' " ;
}
$Input_query = " where " ." $SubQ " ." $ThemQ " ." $CountQ " ." AND ";
$sql_query .= $Input_query ;
$Results = mysql_query($sql_query)