On Tue, 20 Jul 2004 20:09:33 +0200 (CEST), Henri Marc
<[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I'm just starting with PHP and I have a problem. This is certainly very easy for you 
> but for me, it's tough.
> 
> I want to make a lottery site (just as an exercise), so I made a page with 6 grids 
> of 50 numbers each (check boxes).
> 
> Now, I want to know which numbers have been checked by the player.
> I have a :
> "input name="Grid1" type="checkbox"
> for the first grid. Grid2 for the grid #2...
> 
> I was thinking to get the numbers chosen by the player with $_POST['Grid1[]']
> Grid1 being a table but it doesn't work. I thought I wouldn't have to declare an 
> array. I have 50 numbers for each grid, I don't want to have to type array followed 
> by the 50 numbers. There is not a way to do something like array(1...50).
> 
> What is the solution?
> 

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

print_r($_POST['Grid1']);

-- 
DB_DataObject_FormBuilder - The database at your fingertips
http://pear.php.net/package/DB_DataObject_FormBuilder

paperCrane --Justin Patrin--

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

Reply via email to