PHP printing queries results for submits not asked
Hi, so i have an html page that has multiple forms in it. Some of those forms can take an empty string to run a query in the php if no text is entered into it.
These forms work fine, my only issue is that if I am clicking on a form elsewhere, say $query4, then the results page will print that, as well as $query, $query6, and $query7 since they can take empty strings.
How can i fix my code so the Php will only print the query for the specific submit button that is clicked? I have heard about if(isset($_POST['submit'])) but i'm not sure where in my code that would go because when I tried it, it makes my queries return empty.
$query = "SELECT c.*, s.speaker_year FROM Contact c, Speakers s WHERE s.Contact_con_id = c.con_id AND con_lname = "; $query .= "'" . $lastName . "' ORDER BY con_lname;"; if ($lastName == ""){ $query = "SELECT c.*, s.speaker_year FROM Contact c, Speakers s WHERE s.Contact_con_id = c.con_id "; }
$query2 = "Select con_fname, con_lname con_id, proposal_id, proposal_title from Contact c JOIN Individual_Review ir JOIN Proposal p WHERE ir.Reviewer_Contact_con_id = c.con_id AND ir.Proposal_proposal_id = p.proposal_id AND con_fname = "; $query2 .= "'" . $review . "' ORDER BY c.con_fname;"; ?>
$query4 = "Select r.reviewer_type, c.* from Contact c, Reviewer r WHERE r.Contact_con_id = c.con_id AND reviewer_type = "; $query4 .= "'" . $rtype . "' ORDER BY r.reviewer_type;"; ?>
$query6 = "SELECT r.rev_groups_id, c.con_fname, c.con_lname, c.con_phone, r.rev_groups_pass, count(p.proposal_id) FROM Review_Groups r JOIN Proposal p on r.rev_groups_id = p.Review_Groups_rev_groups_id JOIN Presents px on px.Proposal_proposal_id = p.proposal_id JOIN Contact c on px.Speakers_Contact_con_id = c.con_id JOIN Reviewer rw on rw.Review_Groups_rev_groups_id = r.rev_groups_id WHERE rw.reviewer_type = 'Local'";
if ($rgroups == "") { $query6 .= " Group BY r.rev_groups_id;"; } Else { $query6 .="AND r.rev_groups_id = '" . $rgroups . "'"; } ?>
$query7 = "Select c.con_fname, c.con_lname, s.Contact_con_id, IF(s.Contact_con_id IS NULL, 'NO', 'YES') From Contact c Left Join (Select Contact_con_id FROM Speakers WHERE speaker_year = '". $check . "') As s ON c.con_id = s.Contact_con_id"; $query7 .= " ORDER BY c.con_fname;"; ?>
Forms are part of virtually any web application today. They are the main method to receive input from people using the application. They range in size from one-field opt-in forms where you only enter your email address, to very long forms with tens or even hundreds of fields.
To make long forms user-friendlier, it is a good idea to span the form on multiple pages. This can make it easier to follow for the user, and we can also split the data in separate sections, based on the scope (for example separate personal customer information from payment data in a shopping cart checkout form).
One of the challenges that arise from splitting the form over multiple pages is passing the data from one page to another, as at the final point of the form, we have all the needed data ready for processing. We are going to look at two methods to do this: session variables and hidden input fields.
What are sessions anyway?
A HTML session is a collection of variables that keeps its state as the user navigates the pages of a certain site. It will only be available to that domain that created it, and will be deleted soon after the user left the site or closed his browser.
So, the session has a semi-permanent nature, and it can be used to pass variables along different pages on which the visitor lands during a visit to the site.
Multi-page form using sessions
In our example, we are going to create a three pages form, resembling a membership signup and payment form. The first page will ask for customer's name and address, on the second page there is the choice for membership type, and on the third and final page, payment data must be entered. Final step is saving the data in MySQL.
The first file we are going to create (step 1 of the form) will contain just a simple form with two fields.<form method="post" action="form2.php">
<input type="text" name="name">
<input type="text" name="email_address">
<input type="submit" value="Go To Step 2">
</form>
Ok, so nothing more than 2 input fields and a submit button to take us to step 2. In the following page, apart from the HTML form to gather membership data, we are going to need code to store the submitted data from step 1 in the session.
On to step 3, we must again create new session variables, assign values received by post, and create the final part of the form.<?php //let's start the session session_start(); //now, let's register our session variables session_register('membership_type'); session_register('terms_and_conditions'); //finally, let's store our posted values in the session variables $_SESSION['membership_type'] = $_POST['membership_type']; $_SESSION['terms_and_conditions'] = $_POST['terms_and_conditions']; ?> <form method="post" action="form_process.php"> <input type="text" name="name_on_card"> <input type="text" name="credit_card_number"> <input type="text" name="credit_card_expiration_date"> <input type="submit" value="Finish"> </form>
Now that we created step 3 of the form, what's left is the final processing script that inserts the data in the MySQL database.<?php //let's start our session, so we have access to stored data session_start(); //let's create the query $insert_query = 'insert into subscriptions ( name, email_address, membership_type terms_and_conditions, name_on_card, credit_card_number, credit_card_expiration_date ) values ( " . $_SESSION['name'] . ", " . $_SESSION['email_address'] . ", " . $_SESSION['membership_type'] . ", " . $_SESSION['terms_and_conditions'] . ", " . $_POST['name_on_card'] . ", " . $_POST['credit_card_number'] . ", " . $_POST['credit_card_expiration_date'] . " ); //let's run the query mysql_query($insert_query); ?>
Last edited by Inigoesdr; 11-28-2011 at 07:39 PM..