Well….
hmm…schools been ok.Yeah…Websites:I'm making some good progress on my forums, a lot of the major systems are either done or semi-planned at this point. I'm also making some progress on OrbScape and I redid the layout of the Pokemon Twilight siteAs far as 64d goes, somebody has been breaking random stuff =/Pokemon Twilight:Game Fortress got a ton of work done over the past few weeks, V5 will certainly be ready before the end of this month. It's really looking awesome a too, a lot more polished than the current release. Less glitches and better graphics. I even took the time to add some hard to find easter eggs ^_^PHP questionIs there any way to force the php parser to stop working in the middle of the file. I want it to just echo everything after a certain point, include <?php. This is a situation where actually using echo is not an option.edit: I found away around it, but if this is possible I think it would be more efficient.RuneScapeYes, the highly controversial mmorpg. Just a quick status update for anybody else who plays. I'm now a player moderator and thanks to the display name update my name now appears as -removed-. That is all =p
That's sis for you, my friend
Could you just use exit for the PHP question? Although I do believe it would stop parsing the entire document, and not just the PHP.
In that case, just use a variable.$doPHP=false;if ($doPHP){echo "this will not show";}$doPHP=trueif ($doPHP){echo "this will show";}It would be messy I think, but hey.That wouldn't make it ignore <?php