HI all,
Weird problem....
in the file queries.inc.php I've this:
$query = 'select * from list where content = '.$idcontent;
I've this code in my page:
$idcontent = 15;
require_once("q ueries.inc.php" );
The query fails: when I do echo the query I've:
select * from list where content =
The $idcontent isn't set in the include...why ? how to fix it ?
Weird problem....
in the file queries.inc.php I've this:
$query = 'select * from list where content = '.$idcontent;
I've this code in my page:
$idcontent = 15;
require_once("q ueries.inc.php" );
The query fails: when I do echo the query I've:
select * from list where content =
The $idcontent isn't set in the include...why ? how to fix it ?
Comment