Search found 2 matches
- Sun Feb 01, 2004 6:58 pm
- Forum: PHP - Code
- Topic: filename increment in php problem...
- Replies: 3
- Views: 590
Alright I'll figure it myself
I've decided to cheat.... <?php $CounterI = 0; while($Counter <= 9) { echo '<IMG SRC="image00'; echo $CounterI; echo '.gif">'; $CounterI++; } $CounterI = 10; while($Counter <=99) { echo '<IMG SRC="image0'; echo $CounterI; echo '.gif">'; $CounterI++; } $CounterI = 100; while($Coun...
- Sun Feb 01, 2004 6:25 pm
- Forum: PHP - Code
- Topic: filename increment in php problem...
- Replies: 3
- Views: 590
filename increment in php problem...
Hello there budding PHP coders. I figured since I've not really come up with any code that would get me to my "destination" I shouldn't really use the PHP - Code section as this is all... unknown really. What I wish to do: Open files (images) with image names such as: image001.gif How I wi...