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 (line break) tag. The paragraph tag would also work nicely: IP ADDRESS"; echo "$remote_admin"; ?> Or you could start to get fancy by doing it with a table: "; echo "IP ADDRES

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

2001-07-22 Thread Kees Hoekzema
I think you want this: \n is the newline code. so a double newline will look like: echo "IP ADDRESS \n\n"; Kees Hoekzema > -Original Message- > From: Kyle Smith [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 23, 2001 2:47 AM > To: [EMAIL PROTECTED] > Subj

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

2001-07-22 Thread Tyrone Mills
"; echo $remote_admin; ?> -Original Message- From: Kyle Smith [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 22, 2001 5:47 PM To: [EMAIL PROTECTED] Subject: [PHP] PHP.... i suck at it Ok this may sound really pathetic but how do i add a new line (like a space) to a code l

[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 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 do i put in? Thanks for your time :)