Tammy Posted September 23, 2008 Share Posted September 23, 2008 currently it's like this: <table border="0" ALIGN="center"><tr> <td><center><img src="<?php echo $urlpath . $file; ?>" border="0""></td> </tr> <tr> <td><center><textarea onClick="javascript:select();" class="icons"><a href="http://<?php echo $site_url; ?>" target="_blank"><img src="<?php echo $urlpath . $file; ?>" border="0" alt="http://<?php echo $site_url; ?>"></a><br><a href="http://<?php echo $site_url; ?>" target="_blank">More icons at WildAddiction.net</a><br></textarea></td> </tr></table> but i want it to show up like this: <table border="0" ALIGN="center"><tr> <td><center><img src="<?php echo $urlpath . $file; ?>" border="0""></td> <td><center><img src="<?php echo $urlpath . $file; ?>" border="0""></td> <td><center><img src="<?php echo $urlpath . $file; ?>" border="0""></td> <td><center><img src="<?php echo $urlpath . $file; ?>" border="0""></td> </tr> <tr> <td><center><textarea onClick="javascript:select();" class="icons"><a href="http://<?php echo $site_url; ?>" target="_blank"><img src="<?php echo $urlpath . $file; ?>" border="0" alt="http://<?php echo $site_url; ?>"></a><br><a href="http://<?php echo $site_url; ?>" target="_blank">stuff</a><br></textarea></td> <td><center><textarea onClick="javascript:select();" class="icons"><a href="http://<?php echo $site_url; ?>" target="_blank"><img src="<?php echo $urlpath . $file; ?>" border="0" alt="http://<?php echo $site_url; ?>"></a><br><a href="http://<?php echo $site_url; ?>" target="_blank">stuff</a><br></textarea></td> <td><center><textarea onClick="javascript:select();" class="icons"><a href="http://<?php echo $site_url; ?>" target="_blank"><img src="<?php echo $urlpath . $file; ?>" border="0" alt="http://<?php echo $site_url; ?>"></a><br><a href="http://<?php echo $site_url; ?>" target="_blank">stuff</a><br></textarea></td> <td><center><textarea onClick="javascript:select();" class="icons"><a href="http://<?php echo $site_url; ?>" target="_blank"><img src="<?php echo $urlpath . $file; ?>" border="0" alt="http://<?php echo $site_url; ?>"></a><br><a href="http://<?php echo $site_url; ?>" target="_blank">stuff</a><br></textarea></td> </tr></table> but if i use that code, it'll show up 4 of the same images at a time which is not what i want becos right now it will show: 1 1 1 1 2 2 2 2 3 3 3 3 but i want it to show: 1 2 3 4 5 6 7 8 9 10 11 12 How would i do that? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.