re: age
Posted: Sat Jul 06, 2002 10:26 am
<?
for ($BirthDay = 1; $Birthday <= 35; $Birthday++) {
print ("<em>\"Happy Birthday to Me\"</em>");
}
# I like the values in the loop so far but worry about continued
# use of the increment operator
# KDK
for ($BirthDay = 1; $Birthday <= 35; $Birthday++) {
print ("<em>\"Happy Birthday to Me\"</em>");
}
# I like the values in the loop so far but worry about continued
# use of the increment operator
# KDK