Jump to content

[SOLVED] get POST array?


thefollower

Recommended Posts

How do you get the array from a forum with checkboxs which create an array of values?

 

My form has:

<input type="checkbox" name="invite[]" value="<?=$value?>">

 

In there... then i need to get the array to process... do i just do:

 

<?php
If(isset($_POST['Submit'])){

$invite = $_POST['invite[]'];
foreach ($invite as $email){
Echo $email;
Echo '<br>';
}
}
?>

 

Because it won't work for me :(

Link to comment
https://forums.phpfreaks.com/topic/129154-solved-get-post-array/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.