The Shish KaBlog

Posted by KaBob799 on Oct. 3, 2009, 12:31 a.m.

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 site

As 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 question

Is 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.

RuneScape

Yes, 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

Comments

NeutralReiddHotel 15 years, 3 months ago

Quote:
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 ^_^

As soon as I finish BBQ 6, you guys better be expecting some harsh competition. :D

ESA 15 years, 3 months ago

That's sis for you, my friend

Kaz 15 years, 3 months ago

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=true

if ($doPHP){

echo "this will show";

}

It would be messy I think, but hey.

KaBob799 15 years, 3 months ago

That wouldn't make it ignore <?php