Re: [PHP] array with session

2002-11-29 Thread Justin French
Are you on PHP >= 4.1 ? Try this: This should test if a) $_POST['Image'] is being populated b) $_SESSION['Image'] is being populated Then, to do what you were trying to achieve: $val) { echo $val; } // OR // $i = 0; while($i < count($_SESSION['Image'])) { echo $Image[$i

[PHP] array with session

2002-11-29 Thread Laurence
hello everyone, I'm trying to get some images value from a checkbox putting them in a session to preserve the data. The array works perfectly without the session_start() and session_register. can anyone help? html script php script: submit_information.ph