Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a php page on the website that is used to take membership payments for a not for profit motorcycle association. The current payment page uses static form entries for every combination of membership (as you can see at http://www.dsmra.asn.au/paypal_payment.php) and I know there is a better way using the db. I just need to get it working.

I have searched a number of places for information and have been able to successfully fix a good portion of my code and get this working between the php pages and the database to make the selections of Category and Duration (two fields in the DB table). I have been unable to find any information on how to structure my final sql query and pass the php variables back in to the sql query to return the value of the final field in the table (Amount) that matches both Category and Duration and can then be used in a html form (in fact even with static values being passed it is failing and I can't work out why).

I have been able to successfully connect to the database and populate two drop down boxes with the values from the db table. These are shown below as the first few rows in the table.

<TABLE BORDER=2 CELLPADDING=4 CELLSPACING=0>
<tr>
   <td colspan="2">Please select the type and duration for membership payment</td>
<tr>
   <td>Select Single or Family membership:</td>
   <td><select name="membership_category">
       <option value="">Select the type of membership</option>
       <?
       $sql = "SELECT distinct category from dsmra_membership";
       $rqry = mysql_query($sql);
       while($rescat = mysql_fetch_array($rqry)){?>
       <option value="<?=$rescat['category']?>"> <?=$rescat['category']?> </option>
       <? } ?>
       </select>
    </td>
</tr>
<tr>
    <td>Select the number of years membership to purchase</td>
    <td><select name="membership_years">
        <option value="">Select number of years to extend membership</option>
        <?
        $sql = "SELECT distinct duration from dsmra_membership order by duration";
        $rqry = mysql_query($sql);
        while($resyear = mysql_fetch_array($rqry)){?>
        <option value="<?=$resyear['duration']?>"> <?=$resyear['duration']?> </option>
        <? } ?>
        </select>
    </td>
</tr>

For the final step I want to pass the two array values $rescat['category'] and $resyear['duration'] to an sql query that returns the value of the last field (column) in the database named Amount which is the amount for the membership that matches the category and duration. There are discounts applied to the membership fees in the database so different combinations of category and duration means different amounts are paid.

My current code does not work even if I pass static values in the SQL (as per the example below) and I have no idea what I am doing wrong since it works above for populating the select boxes.

<tr>
    <td>Your chosen memberships is as follows:</td>
    <td><?
        $sql = "SELECT * from dsmra_membership WHERE Category = \'Single\' AND Duration = \'3\'";
        $rqry = mysql_query($sql);
        if($rqry){ // Query succeed! :D
                 $result = mysql_fetch_assoc($rqry); // The value should now be available
                 }
                 else
                 {
                 echo 'MySQL Query failed! Please contact the webmaster for assistance.';
                 }
                 ?>

This is the code I would like to use but can't get it to work

<?
$sql = "SELECT * FROM dsmra_membership WHERE Category = $rescat['category'] AND Duration =   $resyear['duration']";
$result = mysql_query($sql) or die(mysql_error());
if (!$result) {
             $message  = 'Invalid query: ' . mysql_error() . "\n";
             $message .= 'Whole query: ' . $query;
             die($message);
             }
$payable = mysql_fetch_array($result) or die(mysql_error());                                   
</td>
</tr>
</table>

I would then like to be able to pass $payable['amount'] to a html form used to process credit card transactions through DirectOne using their payment system. The live page (with the code commented out that is causing the page load to fail) is available at http://www.dsmra.asn.au/paypal_payment_database.php (please ignore the naming convention as this is a not for profit organisation that is run by volunteers and I have just taken over the site and have inherited the structure.)

share|improve this question
1) "My current code does not work" --> What is not working? 2)Perhaps you can formulate your sql query by appending values. For instance "select * from dsmra_membership where category = '".$rescat['category']." ..."; 3) You are calling for a SQL injection : stackoverflow.com/a/9618016/174184 – TJ- Jan 7 at 16:13
try uncapitalising the field names in the query which doesn't work. Case sensitivity can be an issue on some systems. – didierc Jan 7 at 16:49

closed as not a real question by Charles, Stony, Bohemian, Marek Grzenkowicz, Anand Jan 8 at 11:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.