Hello everyone!
I have a form which is posting to a php file-- this is going to be used to collect information for a paypal purchase... so I am wondering, if I do something like this:
<select name="info">
<option value="Application%20Fee!124!50.00">$50 Application Fee</option>
</select>
How is the best way to then have php examine $info and using exclamation points as a delimiter so that it can break up that variable into $item_name, $item_number, and $item_amount
?
Or am I making this a lot harder than I have to, and there's an easier way to pass multiple variables from a form selection?
thanks!
-patrick