I cant stand how to do breaklines in php , some reason also "\n" doesnt work anyways I got tired of doing
print "<br>";
so I made a little function, not sure if its a good idea or good but it works and with 2 days of php I am kinda proud of myself.
dont make fun of me :queasy:
<?php
function space($num){
$num = abs($num);
$pop = 1;
while ($num != $pop) {
print "<br>";
$pop += 1;
}
}
print "First line";
space(-5);
print "2nd line";
?>