Fatal error: Call to undefined function phpinclude() [closed]
Hey i am using this code
<?php
header("Location: ../index.php");
?>
开发者_如何学C
and it is just coming up with this error:
Fatal error: Call to undefined function phpinclude() in /home/nzcraftn/public_html/filenz/upload/index.php on line 1
What went wrong?
i guess you've got <?phpinclude(...) ?>
when it must be <?php include(...) ?>
精彩评论