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] > Subject: [PHP] PHP i suck at

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 like this cau