Nothing fancy. Can't get it to echo ¶

<textarea cols=30 rows=5 name=testtextarea>mary
had
a
little
lamb</textarea>

if ($testtextarea)
{
$inputresult = str_replace(\n, '¶'.\n, $testtextarea);
echo "<textarea cols=30 rows=5 name=testtextarea>$inputresult</textarea>";
}


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

Reply via email to