mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
7 lines
No EOL
117 B
PHP
7 lines
No EOL
117 B
PHP
<?php
|
|
$content = explode("\n", $content);
|
|
|
|
foreach ($content as $line):
|
|
echo '<p> ' . $line . '</p>';
|
|
endforeach;
|
|
?>
|