why not use arrays, like this:
$store[1] = 'a';
$store[2]= 'b';
for ($i=1;$i<=2;$i++) {
$store_number = $store[$i];
echo($store_number);
}
or... if you want to use your way... you may want to think about variable variables
<?
$store1 = 'a';
$store2 = 'b';
for ($i=1;$i<=2;$i++) {
$store_number = "store".$i;
echo(${$store_number});
}
?>
This is an interesting concept in PHP, check manual for more abt variable variables....
Have Fun!
TommYNandA