Jump to content

[SOLVED] Submission ID


Lambneck

Recommended Posts

Hello,

I have here, echoed as a link, the subject  of my submitted forms. 

What I am trying to do is make it so each individual subject from a form submission becomes a link to a page displaying the rest of its form entry (ie. name, email, message).

 

I figure to do this i would have to call on the Submission ID numbers.

however, I have no clue as to how to go about doing so. ???

 

any suggestions?

 

 

$result = mysql_query("SELECT col_4 FROM {$table}");
if (!$result) {
    die("Query to show fields from table failed:".mysql_error());
}

while($row = mysql_fetch_array($result))
{

	echo "<a href=\"Display.php\">$row[col_4]</a>";
	echo "<br />";

}
mysql_free_result($result);
?>

Link to comment
https://forums.phpfreaks.com/topic/100471-solved-submission-id/
Share on other sites

Indeed. You need to be passing something that will identify the row of the database uniquely in the URL. Hopefully this will be in the form of an ID number. You'd then do something like:

 

$result = mysql_query("SELECT col_4 FROM {$table}");
if (!$result) {
    die("Query to show fields from table failed:".mysql_error());
}

while($row = mysql_fetch_array($result))
{

	echo '<a href="Display.php?id='.$row['id'].'">'.$row['col_4'].'</a>';
	echo "<br />";

}
mysql_free_result($result);
?>

 

You'd then have Display.php set up something like:

 

<?php
$id = (int) $_GET['id'];
$sql = "SELECT * FROM tbl WHERE id=$id";
$result = mysql_query($sql) or die(mysql_error());
if(mysql_num_rows($result) == 1){
$row = mysql_fetch_assoc($sql);
//print out information
}else{
echo 'That record ID does not exist!';
}
?>

Link to comment
https://forums.phpfreaks.com/topic/100471-solved-submission-id/#findComment-513863
Share on other sites

Where to specify the column name (submission id)?

 

 

<?php
$id = (int) $_GET['id'];
$sql = "SELECT * FROM tbl WHERE id=$id";
$result = mysql_query($sql) or die(mysql_error());
if(mysql_num_rows($result) == 1){
$row = mysql_fetch_assoc($sql);
//print out information
}else{
echo 'That record ID does not exist!';
}
?>

 

i tried the following with no luck...  :(

 

$submission id= (int) $_GET['id'];
$sql = "SELECT * FROM tbl WHERE submission id=$ submission id";

 

 

Link to comment
https://forums.phpfreaks.com/topic/100471-solved-submission-id/#findComment-515700
Share on other sites

i tried the following with no luck...  :(

 

$submission id= (int) $_GET['id'];
$sql = "SELECT * FROM tbl WHERE submission id=$ submission id";

You shouldn't use spaces in your field names. And you can't use spaces in variable names.

 

To fix that, use

$submission_id= (int) $_GET['id'];
$sql = "SELECT * FROM tbl WHERE `submission id` = $submission_id";

Link to comment
https://forums.phpfreaks.com/topic/100471-solved-submission-id/#findComment-515824
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.