PDA

View Full Version : Explode $code by \n


doa24uk
10-08-2009, 08:24 PM
Hi guys,

I've been wondering....

Is it possible to take the $code variable (used to store the text between the tags) and explode it by \n (newline) characters

for example

[code]
First Line
Second Line
Third Line



<?php
$codelines = explode("\n", $code); // or \r\n if it uses this instead
echo "First line = $codelines[0]<br>";
echo "Second line = $codelines[1]<br>";
echo "Third line = $codelines[2]<br>";
?>


If so, where would I put it to be useful on the showthread page??