John Taylor-Johnston wrote: > I have a SET field in MYSQL. > '1. Type One','2. Type Two','3. Type Three' > > The user can multi-select > <select name="DPRtype[]" multiple> > <option value="1. Type One"> > <option value="2. Type Two"> > <option value="3. Type Three"> > </select> > > I just dont know how to express $_POST[DPRtype] to be able to build the > $SQL to express the separate possibilities. > > $sql = "UPDATE `taylorjo`.`CRTP_CGA` > SET > `DPRtype` = '$_POST[DPRtype]' > "; > > > Thanks. Not a newbie. I should know how to do this. I just don't code > every day. Use implode() to create a comma separated string for insertion into your table -- Cheers David Robley Why are Chinese fortune cookies written in English? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php