Posted by Gary Hasler on 11/07/26 11:54
Like:
($i = 0; ($i < 7)&&($i!=$row['bbannerorgfont']); $i++) {....
?
Ian Davies wrote:
> Hello
> Im using the following loop to populate a list box but I dont want th
> current selected value (from database) to show in the list
> The one I want to omitt is in the variable
>
> $row['bbannerorgfont']
>
> I wish to some how include this in the below loop to the effect of
>
> echo from 0 to 6 except for $row['bbannerorgfont']
>
> VB has select...case... etc. Is there something similar with PHP?
>
> <?
> for($i = 0; $i < 7; $i++) {
> echo "<option value='".$i+1."'>".$i+1."</option><br>";
> }
> ?>
>
> cheers ian
Navigation:
[Reply to this message]
|