hey there im fairly new to the wonderful world of php so please bare with me 🙂
i have a couple questions about an output break...
first, i wanna get my output to display if greater then X amount of chars in a marquee else display normal.. is this the best way to do it?
$num_char=strlen($output);
if ($num_char < 50) {
echo" blah";
}else{
echo"<marquee>blah</marquee>";
}
also
if i have an output with multiple results "each result being on a new line" what would the code be in order to get the results to scroll if there are more then 10 lines of output?
thanks for your help!
RCB