Forum Moderators: phranque
<form method=post action=select.php>
<input type="checkbox" name="cost" value="$1.99">
<input type="submit" value="Submit">
</form>
The "select.php" file would contain the appropriate scripting code to begin the search for $1.99 items.
It gets more detailed than that on the coding side, but I'm not sure exactly what you are looking for.
Mysql is the open source database programming for the web, built on the concepts of SQL (Structured Query Language.) It is build around common sense queries to a database to insert, modify, read, or delete database entries. For example, a typical shopping cart query might be: insert into purchases (color,size,price) values ('red','large','1.99');
So you use the form to collect and submit data, a server-side processor to read in the data and perform whatever functions you need to perform, such as insert the data into a database and send you an email notifying you of the action.
Lots more to it, but that's the basic concept . . . :-)
What is the simplest method of processing the data submitted to the form and populate a list to be displayed onscreen?
I was thinking IŽd use radio buttons where users could select preference in regards to a few aspects.
Based on their choices there would be displayed a list of best matches. If there is no match then closest matches.
On htmlgoodies they show listmaking using forms and cgi, how does cgi compare to perl, php for this particular purpose?
What is the simplest method of processing the data submitted to the form and populate a list to be displayed onscreen?
This really depends on your comfort level with one of those server-side programming languages rocknbil mentioned. Each one has different coding techniques for accepting your form data, whether it's radio buttons, checkboxes, or text boxes.