Hey all, I've solved my own problem (posted earlier in the week), but I don't really understand why what I did worked and why what I was doing wouldn't work.
I wanted to add some additional fields to the products and I had everthing working fine except when I would go back to edit a product, the additional fields wouldn't be populated with the information from the database. Only the new field I added was affected. I was duplicating existing code when generating text boxes and that didn't work. For example this is original code:
<input type="text" name="products_quantity" value="<? echo @$pInfo->quantity; ?>">so I did this and it didn't work
<input type="text" name="products_contact_id" value="<? echo @$pInfo->contact_id; ?>But this did work
<input type="text" name="products_contact_id" value="<? echo $product['products_contact_id']; ?>
Why didn't the logical solution work while a stab in the dark did work? It's not important, it just bugs me.
TIA
-nan









