i code the following
JavaScript
x
<?php
if ($id = mysql_real_escape_string(@$_GET['pid'])
&& $uid = mysql_real_escape_string(@$_GET['file']))
echo include "foo.php";
else
echo include "bar.php";
?>
When I use the include function in conjunction with a function that’s designed to output to the page (e.g., or echo include ‘foo.php’), it returns the include but with a “1” after the content that has been included.
Advertisement
Answer
JavaScript
echo include "foo.php"
should be
JavaScript
include 'foo.php';