[PHP] PHP.... i suck at it

2001-07-22 Thread Kyle Smith
Ok this may sound really pathetic but how do i add a new line (like a space) to a code like this ?php echo IP ADDRESS; echo $remote_admin; ? cause when i try the code out it looks like IPADDRESS127.0.0.1 and i want it to look like IP ADDRESS 127.0.0.1 or IP ADDRESS 127.0.0.1 so what

RE: [PHP] PHP.... i suck at it

2001-07-22 Thread Kees Hoekzema
PROTECTED] Subject: [PHP] PHP i suck at it -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP.... i suck at it

2001-07-22 Thread Matthew Garman
Well, there are a few ways to do it. The secret is to know a little bit of HTML. Another poster suggested using the br (line break) tag. The paragraph tag would also work nicely: ?php echo pIP ADDRESS/p; echo p$remote_admin/p; ? Or you could start to get fancy by doing it with a table: