Posted by Krustov on 11/16/05 04:52
<comp.lang.php , Krustov , krusty@krustov.co.uk.INVALID>
<MPG.1de4ae453047c8cf98a70f@no-cancel.newsreader.com>
<Wed, 16 Nov 2005 02:48:33 -0000>
> $temp=1;
> while ($temp<4)
> {
> $demo="$var_$temp";
> do whatever you want with it
> }
>
$temp=1;
while ($temp<4)
{
$demo="$var_$temp";
do whatever you want with it
$temp=$temp+1;
}
Opps :-))
[Back to original message]
|