Matt
06-01-2002, 01:40 PM
<?php
error_reporting(7);
require('./global.php');
$iconcount = 1;
while($iconcount < 103){
$iconcount = str_pad($iconcount, 3, "0", STR_PAD_LEFT);
eval("dooutput(\"".gettemplate('icons_bit')."\");");
$iconcount++;
}
?>
Icons_bit
<a href=aim:BuddyIcon?Src=http://www.thedailyplanet.net/downloads/$iconcount.gif><img src="http://www.thedailyplanet.net/downloads/$iconcount.gif" width="48" height="48" border="1" style="border-color:black;"></a>
I am trying to print 103 AIM icons on a page but it only brings up one, how do I do this? Also how do I make it so that uses the forum scheme?
error_reporting(7);
require('./global.php');
$iconcount = 1;
while($iconcount < 103){
$iconcount = str_pad($iconcount, 3, "0", STR_PAD_LEFT);
eval("dooutput(\"".gettemplate('icons_bit')."\");");
$iconcount++;
}
?>
Icons_bit
<a href=aim:BuddyIcon?Src=http://www.thedailyplanet.net/downloads/$iconcount.gif><img src="http://www.thedailyplanet.net/downloads/$iconcount.gif" width="48" height="48" border="1" style="border-color:black;"></a>
I am trying to print 103 AIM icons on a page but it only brings up one, how do I do this? Also how do I make it so that uses the forum scheme?