RE: [PHP] incrementing string value

2003-07-28 Thread Ford, Mike [LSS]
-Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: 26 July 2003 01:14 * Thus wrote Curt Zirzow ([EMAIL PROTECTED]): * Thus wrote Jeremy ([EMAIL PROTECTED]): let me make sure I understand... $var = 'a'; $var++ print($var); would print b to

[PHP] incrementing string value

2003-07-25 Thread Jeremy
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

RE: [PHP] incrementing string value

2003-07-25 Thread Carl Furst
Yep that should work as does $var-- -Original Message- From: Jeremy [mailto:[EMAIL PROTECTED] Sent: Friday, July 25, 2003 12:28 PM To: [EMAIL PROTECTED] Subject: [PHP] incrementing string value writing some client side javascript with some dynamic php, and I need to be able to print

Re: [PHP] incrementing string value

2003-07-25 Thread Jeremy
, July 25, 2003 12:28 PM To: [EMAIL PROTECTED] Subject: [PHP] incrementing string value 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

Re: [PHP] incrementing string value

2003-07-25 Thread Curt Zirzow
* Thus wrote Jeremy ([EMAIL PROTECTED]): 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

Re: [PHP] incrementing string value

2003-07-25 Thread Curt Zirzow
* Thus wrote Jeremy ([EMAIL PROTECTED]): let me make sure I understand... $var = 'a'; $var++ print($var); would print b to the screen? um.. ignore my post ealier.. yes it does print 'b' Curt -- I used to think I was indecisive, but now I'm not so sure. -- PHP General Mailing List

Re: [PHP] incrementing string value

2003-07-25 Thread Marek Kilimajer
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

Re: [PHP] incrementing string value

2003-07-25 Thread Curt Zirzow
* Thus wrote Curt Zirzow ([EMAIL PROTECTED]): * Thus wrote Jeremy ([EMAIL PROTECTED]): let me make sure I understand... $var = 'a'; $var++ print($var); would print b to the screen? um.. ignore my post ealier.. yes it does print 'b' I forgot to mention, be sure to check how far