Search found 9 matches
- Thu Mar 24, 2011 12:51 am
- Forum: Project Showoff Tier II
- Topic: Hiddenworld - Free RPG!
- Replies: -1
- Views: 2432
Hiddenworld - Free RPG!
Some of you might have tried it out before, but Hiddenworld is a free browser based MMO. ^^ I am posting this now because the player base is getting smaller, and we could do with some people checking it out! http://www.hiddenworld.com Just click "Join Now" and follow the steps to make a ne...
					- Sat Mar 19, 2011 10:15 pm
- Forum: Tutorials
- Topic: Advanced PHP Templating (Maybe)
- Replies: -1
- Views: 1199
Advanced PHP Templating (Maybe)
All right, so it's been a while since I've logged in here and posted... But I have been lurking over the past year or so. ^^ Now, when I first signed up for the forums here, I posted a very basic templating tutorial. I have since looked around online at how other popular PHP application handle templ...
					Re: hello
Howdy, welcome to the forums. 
					
- Sun Jan 31, 2010 11:51 pm
- Forum: Tutorials
- Topic: [PHP] Very Basic Templating
- Replies: 0
- Views: 6555
[PHP] Very Basic Templating
I'm not sure if templating is the right word, but I came across an article somewhere on the internet that gave me this idea. Essentially, the script I am about to explain to you is to allow you to include one template file to your script then change parts of it dynamically before outputting it to th...
					Re: Howdy
Thanks everyone.
I must say, I've felt very welcome here so far. You have a great community from what I have seen so far. I think I'll be sticking around here.
					I must say, I've felt very welcome here so far. You have a great community from what I have seen so far. I think I'll be sticking around here.

- Sun Jan 31, 2010 6:23 pm
- Forum: General Development
- Topic: List of PHP Error meanings?
- Replies: 12
- Views: 3075
Re: List of PHP Error meanings?
Im not sure if there is a list of errors.. But here is a few I know of. Parse Error: Forgotten a bracket, quotation mark, curly brace. Unexpected End: I think this may fall under parse error, but if your page finishes loading before an if statement is closed you'll get this. Undefined Index: Trying ...
					- Sun Jan 31, 2010 5:46 pm
- Forum: Coding
- Topic: HTML within PHP
- Replies: 30
- Views: 7141
Re: HTML within PHP
Yeah. Personally, if it's inside a loop or if statement I usually just echo it out. But if it's a large block of html it's probably easier to exit php. I hate having to escape all the quotations and things like that, very annoying. I was just curious because I've been trying to clean up my php latel...
					- Sun Jan 31, 2010 3:54 pm
- Forum: Coding
- Topic: HTML within PHP
- Replies: 30
- Views: 7141
HTML within PHP
Sorry if something like this has been posted beforehand, I'm just curious to see how you guys handle it. Do you escape php, type your html then enter php again? <?php $VariableName = 0; if ($VariableName == 0) { ?> <img src = "picture.jpg"> <?php } Or do you just echo your html within php?...
					Howdy
I came here after seeing Hall of Vallhalla's videos on youtube. Pretty interesting stuff. I've been developing my own textbased mmo on and off for about 4 years now. I got back into it recently and am currently in the process of rewriting the whole source, making use of PHP's object oriented languag...