YetAnotherForum
Welcome Guest Search | Active Topics | Log In | Register

Pass selection from list to paypal from php variab Options
elation
#1 Posted : Tuesday, August 12, 2003 10:13:54 PM
Rank: Starting Member

Groups: Registered

Joined: 8/12/2003
Posts: 1
Location: ,
Please help me. I have a <select> feild populated from a mysql database. I am trying to pass the selection from the user to paypal. The code I currently have only pass the last value from my dropdown menu no matter which option I select. How do I get it to pass the the option I select. Here is the code I have: <? echo "<form><select name=$os0>"; $result = mysql_query("SELECT Scent_Name FROM Scents"); while ($row = mysql_fetch_array($result)) { $os0=$row["Scent_Name"]; echo "<option value=$os0>$os0\n"; } echo "</select>\n"; ?> and then later: <input type="hidden" name="on0" value="Scent"> <input type="hidden" name="os0" value="<?php echo "$os0"; ?>"> if this code does not help here is the link to the direct page to view all my source (a work in progress): http://www.elationcandles.com/16ozapothecarya.php Thank you in advance for your help. A new php programmer
Sponsor  
 
paypal_pb
#2 Posted : Wednesday, August 13, 2003 3:57:18 AM
Rank: Starting Member

Groups: Registered

Joined: 9/16/2002
Posts: 2,960
Location: ,
It doesn't look like a valid &lt;select&gt; is being created:

&lt;select name="os0"&gt;&lt;OPTION value=""&gt;&lt;/OPTION&gt;&lt;OPTION value=""&gt;&lt;/OPTION&gt;&lt;OPTION value=""&gt;&lt;/OPTION&gt;&lt;OPTION value=""&gt;&lt;/OPTION&gt;&lt;/select&gt;

I'm not sure what the correct PHP is but it needs to create something like:

&lt;input type="hidden" name="on0" value="Scent"&gt;
&lt;select name="os0"&gt;
&lt;OPTION value="Vanilla"&gt;Vanilla&lt;/OPTION&gt;
&lt;OPTION value="Lemon"&gt;Lemon&lt;/OPTION&gt;
&lt;/select&gt;

Maybe it's not fetching anything from your DB?

Patrick Breitenbach
PayPal, Inc.
Dev Net: https://www.paypal.com/pdn
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFVision Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF | YAF © 2003-2009, Yet Another Forum.NET
This page was generated in 0.162 seconds.