vote up 1 vote down star

I want to use a hyperlink to load details into an updatable form page.

I have 2 php pages. One returning the id of the last 10 records of a MYSQL query and another returning all field values for a specific record into a form, giving the end user the opportunity to update the field values. Can anyone help me link the two so that when I click on say row 3 (id = 3) of the table in the first page it takes me to the second page using the id 3 in the MYSQL query utilised by the second page, to prepopulate the form fields.

i.e. MYSQL table 'members' with 'id', 'firstname', 'surname', 'dob', and 'address'

Page 1 returns last 10 results of 'select id from members' & the id values are hyperlinks Page 2 returns results of 'select id, firstname, surname, dob, address from members where id = 3 when user selects the id 3 hyperlink on page 1, and promotes the respective values to form fields 'id_ff', 'firstname_ff', 'surname_ff', 'dob_ff', and 'address_ff'

Don't know how to promote the id '3' values to the page 2 form fields?

flag

0% accept rate

3 Answers

vote up 0 vote down

Guys, am not having much luck...and I've tried and tried. Have included the code below. Am doing this in Dreamweaver hence the funny code. This is the edit page. I successfully parsed 'bet_id' value from Page 1 to this page. It populates the form fields with the correct 'bet_id' and 'category_id' values based on the value parsed from page 1. Problem comes to when I update the values in the form. If I update the 'category_id' value and hit the Update bet button, the script does not update the bet record in my database. Any help much appreciated.

<?php require_once('../Connections/punters_c.php'); ?>

mysql_select_db($database_punters_c, $punters_c);

$query_Recordset1 = "SELECT bet_id, punter_id,category_id FROM betslip where bet_id =".intval($_REQUEST['bet_id']); $Recordset1 = mysql_query($query_Recordset1, $punters_c) or die(mysql_error()); $row_Recordset1 = mysql_fetch_assoc($Recordset1); $totalRows_Recordset1 = mysql_num_rows($Recordset1);

the below function removes dodgy field values

function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;

switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break;
case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } $editFormAction = $_SERVER['PHP_SELF']; if (isset($_SERVER['QUERY_STRING'])) { $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']); } ?>

    $query = sprintf("  UPDATE betslip 
						SET category_id = '%d' 
						WHERE bet_id = %d",	
        				mysql_real_escape($_POST['category_id']),
        				mysql_real_escape($_POST['bet_id'])
        													);

mysql_select_db($database_punters_c, $punters_c); $Result1 = mysql_query($query, $punters_c) or die('Connection error to MYSQL occurred: '.(mysql_error()));

    header("Location: /update_betslip_test.php");

}
else 
{
	echo "bet detail not updated";
}
?>

Untitled Document

" method="POST" enctype="multipart/form-data" name="update_betslip_detail">

<input type="text"  	name="bet id" 		id = "bet_id" 		value="<?php echo $row_Recordset1['bet_id']; ?>"/>
<input type="text"  	name="category_id" 	id = "category_id" 	value="<?php echo $row_Recordset1['category_id']; ?>"/>


<input type="hidden"    name= "apply" 		value="update_betslip_detail"/>

<input type="submit"    value="Update bet"/>
</form>

<p><a href="update_betslip_test.php">Back to Update page </a></p>

link|flag
vote up 0 vote down

Sure.

# Do sql query and drop it into $members
for ($members AS $member)
{
echo '<a href="/page2.php?id='.$member['id'].'">Member '.$member['id'].'</a>';
}

and have on your 2nd page:

$_GET['id'] = whatever_you_use_to_sanitise($_GET['id']);
#do sql query with new id

Remember, don't just copy and paste. Think for yourself and LEARN what we did. Look at http://www.w3schools.com/php/default.asp and go through the basics.

Good luck!

link|flag
Thanks for that. Will do. – Alex Aug 12 at 11:58
If the answer helped you Alex, don't forget a + vote :) (i'm new here and need all the rep I can get :D ) – Dorjan Aug 12 at 12:05
vote up 1 vote down
you can do:

    // list.php

    $query = sprintf("SELECT * FROM my_table");

    $result = mysql_query($query);

    while($c = mysql_fetch_array($result)) { 
        echo '<a href="/edit.php?id=' . $c['id'] . '">Edit ' . $c['id'] . '</a><br />';
    }



<?
                // edit.php
    if(isset($_POST['apply'])) {

        $query = sprintf("UPDATE my_table SET somefield = '%s', somefield2 = '%s', somefield3 = '%s' WHERE id = %s", 
        mysql_real_escape($_POST['somefield']),
        mysql_real_escape($_POST['somefield2']),
        mysql_real_escape($_POST['somefield3']),
        mysql_real_escape($_POST['id'])

        );

        $r = mysql_query($query);

        if (!$r) die(mysql_error());

        header("Location: /list.php");

    }


        $id = $_GET['id']; // just an example.. you should prevent injections here
        $query = sprintf("SELECT * FROM my_table WHERE id = %s", $id);

        $result = mysql_query($query);

        $details = mysql_fetch_array($result);


    ?>
    <form method="post" action="">

    <input type="text" name="somefiled" value="<?= $details['somefiled']"/>
    <input type="text" name="somefiled2" value="<?= $details['somefiled2']"/>
    <input type="text" name="somefiled3" value="<?= $details['somefiled3']"/>


    <input type="hidden" name="id" value="<?= $details['id']"/>
    <input type="hidden" name= "apply" value="yes"/>


    <input type="submit" value="Submit"/>
    </form>
link|flag
why the downvote? This seems to be OK to me... – Martijn Aug 12 at 11:50
you've got malformed html (quotes in href attribute) – Alexander Gyoshev Aug 12 at 11:50
the downvote was before the edit of the answer, I removed it – Alexander Gyoshev Aug 12 at 11:51
come on, that is just an example :P.. anyway I've just addded some html to made the changes – Gabriel Sosa Aug 12 at 12:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.