Re: [PHP] Help with POSTing variable array names from a PHP script please.

2003-02-15 Thread Jason Wong
On Saturday 15 February 2003 18:38, rentAweek support wrote: > Jason > > Thanks for your help . > > I've implemented you advice. The problem persists in that I'm trying > create the following situation: > When the posted action php script runs I want the retrieved $_POST array > to contain such inf

Re: [PHP] Help with POSTing variable array names from a PHP script please.

2003-02-15 Thread rentAweek support
Jason Thanks for your help . I've implemented you advice. The problem persists in that I'm trying create the following situation: When the posted action php script runs I want the retrieved $_POST array to contain such information that the action script can find out what checkboxes were clicke

Re: [PHP] Help with POSTing variable array names from a PHP script please.

2003-02-15 Thread Jason Wong
On Saturday 15 February 2003 17:05, Michael Eacott wrote: > > # Show details of BOOKS > > # Performing SQL query > > $query = "SELECT * FROM `$books` WHERE `title` LIKE '$title' LIMIT 99"; > $result = mysql_query($query) or die("Query failed"); > > $count = 1; $bookslist = ""; > while ($rowarray

[PHP] Help with POSTing variable array names from a PHP script please.

2003-02-15 Thread Michael Eacott
I'm attempting to "print" to the client's browser a list of book titles found in a MYSqL table, each with a checkbox on its "printed" line so that the client can click on the checkboxes to retrieve selected books. The php script below is included after verification of the fields in an HTML form