Just a quick question - can you nest, for example, while loops - ie put one inside another? I'm having a bit of trouble getting DreamWeaver to let me do this!
Sure.
<?PHP $i = 1; while ($i <= 10){ echo "i= $i<br />"; $j = 1; while ($j <= 10){ echo "i= $i and j = $j<br />"; $j++; } $i++; } ?>
works fine.
See tomd.hostrocket.com/nest.php
just checking. must be something else then. I'll go back and have aanother look now...