i guess, it would be better to use loops, if i understand your problem, the
way it is.
Nitin
- Original Message -
From: "Rashini Jayasinghe" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, October 17, 2003 3:12 PM
Subject: [PHP] Passing values dynamically
> Hi,
>
> I am gettin
You need to create an array in the session and assign the values:
$_SESSION['values']=array();
while( $v=/* get single value */ ) {
$_SESSION['values'][]=$v; // notice the []
}
Then on the other page loop the array.
Rashini Jayasinghe wrote:
Hi,
I am getting a one column table as a result fo
2 matches
Mail list logo