I know how to include, but, I wan't to include a forum page so that I can manage sessions and database calls. I wasn't able to include that page into another page without going to that page. But stopping it appearing as the original file I included. The <!-- and --> tag doen't work any ideas?
Please don't say delete the echos and prints as that doesn't work 🙁
Hi Zingbats
What exactly are you trying to do. Your Post is a little confusing
Can you explain it and i'lll see if i can help you
GM
I am making a system where you need X amount of points to enter, And I have a points hack for phpBB and I want to include viewtopic.php to manage all the database calls then from the querys in viewtopic.php run a series of if commands and I need to include viewtopic.php parsing all the php while making it invisible to the users browser the code in enter.php, enter.php being the gateway to enter if there points are over x amount'
PHP code is always invisible to the client.
On whatever page the client is viewing, make it a PHP file and start with...
<?php require("viewtopic.php"); ?> <html> . . . . . .
Or just make viewtopic.php do everything you want.