A side note: instead of repeating the same character (the underscore) 100 or so times, you could use the "x" repetition operator from Multiplicative Operators. These 2 lines are the same:
print '<br>____________________', "\n";
print '<br>', '_' x 20, "\n";