Dave
08-02-03, 03:02 AM
Hello Guys and Gals,
I've got to quick PHP questions..
I want for a user to be able to select multiple languages from a list and I want those values to be inputted into a MYSQL table. So if the users selects English and Chinese, the language column will contain "English, Chinese." I want the values to be comma separated.
<select size="3" multiple>
<option value="English">English</option>
<option value="Arabic">Arabic</option>
<option value="Chinese">Chinese</option>
</select>
Next, I want users to be able to search a database with multiple requirements, possibly with checkboxes. So, for example, the users wants to search for the row in which the "Car" column = "BMW" or the "WebSite" column = "Yes".
Thanks for the help guys!
I've got to quick PHP questions..
I want for a user to be able to select multiple languages from a list and I want those values to be inputted into a MYSQL table. So if the users selects English and Chinese, the language column will contain "English, Chinese." I want the values to be comma separated.
<select size="3" multiple>
<option value="English">English</option>
<option value="Arabic">Arabic</option>
<option value="Chinese">Chinese</option>
</select>
Next, I want users to be able to search a database with multiple requirements, possibly with checkboxes. So, for example, the users wants to search for the row in which the "Car" column = "BMW" or the "WebSite" column = "Yes".
Thanks for the help guys!