JavaScript has arrays too. I'm sure you will find it easier to work with them.
<script>
var a=new Array();
<?php while($a=read_something()) { ?>
a[]="<?= $a ?>";
<?php } ?>
</script>
Jeremy wrote:


writing some client side javascript with some dynamic php, and I need to be
able to print a dynamic number of variables to the javascript.

I need to print:
var a="";
var b="";
...etc.

Is there a way to increment a php $var much like $var++ would work?

Jeremy





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to