Jump to content

How to print an array of $POST


kelsjc

Recommended Posts

Hi all

 

 

This is probably the easiest question ever :) , but I am not familiar with arrays , so hope somebody can help me

 

 

User post this checkbox form (array):

 

<input type="checkbox" name="type[0][]" value="1" >

<input type="checkbox" name="type[0][]" value="2" >

<input type="checkbox" name="type[0][]" value="3" >

 

I need to get all checked values and print them ...

How can I do this?

 

 

I tried the code below, but it only returns me one value

 


$values = array($_POST["type"]);

foreach ($values as $item){

     echo $item;

}

 

 

Any help???

 

 

 

Thanks!!

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/215068-how-to-print-an-array-of-post/
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.