here is the part of the php that returns everything
function _build_fields($vars){
$skip_fields = array(
'name_from',
'email_from',
'email_to',
'name_to',
'subject');
$is_ordered = 0;
foreach ($vars as $k=>$v)
if (in_array($k, $skip_fields)) unset($vars[$k]);
$new_vars = array();
foreach ($vars as $k=>$v){
$k = preg_replace('/_(req|num|reqnum)$/', '', $k);
if (preg_match('/^\d+[ \:_-]/', $k)) $is_ordered++;
$k = preg_replace('/^\d+[ \:_-]/', '', $k);
$new_vars[$k] = $v;
I believe thats the part of the php that returns everthing listed in the order form.
the order form has this: (in addiiton to contact info)
<input ReadOnly=True name="part1" value="2990" >
<input name="desc1" ReadOnly=True value="GERMAN SHEPHARD" > <input type=text name="qty1" size=3 maxlength=3 value="0" onchange="updatePrice()">
<input ReadOnly=True onFocus=this.blur() input name="cost1" value="129.00">
Now the only change on the form, aside from the user data entered for contact info, is in the "QTY1" field, there are 25 of these one for each item. So it goes QTY1, QTY2, etc...
Now what I need is for the results of the user selections to be mailed to me. Right now the entire order form is emailed to me, and I have to look thru it to see what it is they entered on the order form item by item.
I hope and pray this helps. I'll keep my newbie fingers crossed.