i have the code now as:
<table width='600px' class='tbl_content_box' border='0' cellspacing='0'>
<tr>
<td width='100px'>Products:</td>
<td width='100px'>Graphic</td>
<td width='100px'>Text</td>
<td width='100px'>Suppliers
<select name="supplier">
<?php
$catcher_id = $service->getCatcherId();
$supplier_names = LpmAdnetworkPeer::getByName($catcher_id);
foreach($supplier_names as $row)
{
?>
<option value="<?php echo $Name . "/" . $id; ?>"><?php echo $row->getName();?></option>
<?php
} ?>
</select>
</td>
</tr>
</table>
and when i hit the sumbit button on this form i go to documentSuccess.php where i can get the id and name by:
<?php
$input= $_POST['supplier'];
list($name, $id, $client_code) = explode("/", $input);
?>
only thing now is i also have a client code and as soon as i add it to the option tag and also add it to the list statement above i get an offset error...
how can i add the 3rd value???
thanks