Frank Keessen wrote:
Still strugling with array's ;> : Can you help me with this??

<input type=\"text\" name=\"test1[$i]\" size=\"6\">

How can i put that value into an $_SESSION??

Something like $_SESSION["test1"][$i]??

This is the way i put into a database

foreach($_POST['test1'] as $i => $Value) {
$query = "INSERT INTO test (test1, test2, test3, test4 , test5) VALUES ('".$_POST['test1'][$i]."', '".$_POST['test2'][$i]."', '".$_POST['test3'][$i]."', '".$_POST['test4'][$i]."', '".$_POST['test5'][$i]."')";
$result = mysql_query($query);


But i've got no clue how to put into a session and retrieve it..

$_SESSION['test1'][$i] = $_POST['test1'][$i]


Assuming you're setting $i to something in the processing script...

--
---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

PHP|Architect: A magazine for PHP Professionals – www.phparch.com





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



Reply via email to