02-03-2009, 01:08 PM
|
#3 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
Though don't forget that any special character beginning with a back-slash: \b (backspace), \n (line break), \t (tab), etcetera, doesn't work as expected when encapsulated with single quotes. For that to work you must break out of your single quotes:
php Code:
echo 'Put this on' . "\n"; echo '...Two lines!';
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|