ok i am trying to include a file i use query2.php?i=2 and when i try it yells at me.. so i what i tryed to do was set up something like this <? { $i==2 include ("query2.php"); } ?>
but that didnt work either. any clue why?
Where's your if statement?
if ($i == 2) { include("query2.php"); }
Diego