Another question....
I have a for statement that looks something like this:
for ($i = 1; $i <= 100; $i++) {
echo '<a href="someurl.php?p=$i">Link</a> | ';
}
I'd like to put in a <BR> tag after every multiple of 10. I've tried to use a nested for statement, but I just get errors. I don't think I'm doing it right. 😕