Posted by Alex on 01/13/06 01:31
Hi, I'll be as brief and clear as possible.
- I have one base file which displays few checkboxes and 3 buttons.
- depending on which button is clicked I must invoke different php
script (3 different php files - one for each button)
- I have to pass checkboxes values ( all are in array checkbox[] ) to
one of the 3 scripts.
How would I do that? That's something like invoking each script with
$_POST[]. Do I use echo "get_file_contents(
scriptname.php?checkbox[]=$_POST['checkbox']&checkbox1=$_POST[checkbox1])"
?
Each script works fine if I implement checkboxes right into it. But I'm
confused on how to pass an array (of checkboxes) to a different script.
Regards,
[Back to original message]
|