Jump to content

Display only one row from db with PHP


BrianM

Recommended Posts

Would somebody please show me an example of a database connection to MySQL via PHP selecting and displaying one row from a table and not every row in it?

 

I'm wanting to select only one row from a table, selected by it's "id" and display only that one row. And the id will be pulled from a query string using $_GET['id'] and storing that as a variable at the top of the script;

ie. "../index.php?table=some_table&id=1" - $id = $_GET['id'];

Link to comment
https://forums.phpfreaks.com/topic/113251-display-only-one-row-from-db-with-php/
Share on other sites

Yeah, I was going to say, while waiting I Googled this little example from w3schools.com

 

SELECT * FROM person WHERE FirstName='Peter'

 

Alright, well hopefully all will go well from here. Thank you very much for your help and the quick reply! ;D

Okay, a little problem ... can't figure this one out.

 

Here is my code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>MPS Project Tracking - by Brian Medley</title>
</head>
<?php
mysql_connect('localhost', 'brian', 'some_pass') or die(mysql_error());
mysql_select_db('reports') or die(mysql_error());

$table = $_GET['table'];
$id = $_GET['id'];

$sql = mysql_query("SELECT * FROM `$table` WHERE id=`$id`");

while($row = mysql_fetch_array($sql))
{
	echo $row['date'] . " " . $row['report'];
}
?>
<body>
</body>
</html>

 

And I get this error when I display the page:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\new_mps\report\edit_report.php on line 16

Unknown column '1' in 'where clause' - that's the error I get. That doesn't make since, I have an 'id' column. Here is what my table looks like at the moment to give you a visual.

 

id  date          report

1    07-04-08  test report.

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.