[snip]
I would like to add a > symbol infront of each line I pull out of a
database. 
Similar to the function seen in online e-mail clients when you click on
reply.

Has anybody an idea on how to add a symbol in front of each line?`
[/snip]

Use a '.'

example --

while(!feof($file)){
   $line = fgets($file, 4096);
   $newLine = '>' . $line;
   echo $newLine;
}

HTH!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to