Learning PHP and MySQL

Monday, September 25, 2006

Example 12-5 The file purchase.php processes the user action based on the title_id parameter

<?php
require_once('db_login.php');
require_once(
'DB.php');
$connection  =  DB::connect("mysql://$db_username:$db_password@$db_host/$db_database");
if  (
DB::isError($connection)){
die  ("Could  not  connect  to  the  database:  <br  />".  DB::errorMessage($connection));
}
$title_id  
=  $_GET["title_id"];
$user_id  =  'mdavis';
$query  =  "INSERT  INTO  `purchases`  VALUES  (NULL,'$user_id',$title_id,NULL)";
$result  =  $connection->query($query);
if  (
DB::isError($result)){
die("Could  not  query  the  database:  <br  />".  $query."  ".DB::errorMessage($result));
}
?>
<html>
<head>
<title>Thanks  for  your  purchase!</title>
<meta  http-equiv="refresh"  content="4;  url=pear_purchase_example.php">
</head>
<body>
Thanks  for  your  purchase!<br  />
<?php

$query  
=  "SELECT  *  FROM  purchases  NATURAL  JOIN  books  NATURAL  JOIN  authors";
$result  =  $connection->query($query);
if  (
DB::isError($result)){
die("Could  not  query  the  database:  <br  />".  $query."  ".DB::errorMessage($result));
}
echo  '<table  border="1">';
echo  
"<tr><th>User</th><th>Title</th><th>Pages</th>";
echo  
"<th>Author</th><th>Purchased</th></tr>";
while  (
$result_row  =  $result->fetchRow(DB_FETCHMODE_ASSOC))  {
echo  "<tr><td>";
echo  
$result_row["user_id"]  .  '</td><td>';
echo  
$result_row["title"]  .  '</td><td>';
echo  
$result_row["pages"]  .  '</td><td>';
echo  
$result_row["author"]  .  "</td><td>";
echo  
$result_row["purchased"]  .  "</td></tr>";
}
echo  "</table>";

$connection->disconnect();
?>
</body>
</html>

Posted by krautgrrl on 09/25 at 10:56 AM
Chapter 12 Code • (2) Comments • (3) TrackbacksPermalink

Statistics

This page has been viewed 407328 times
Page rendered in 0.1141 seconds
Total Entries: 224
Total Comments: 16
Total Trackbacks: 307338
Most Recent Entry: 09/27/2006 12:39 pm
Most Recent Comment on: 10/26/2007 10:00 am
Total Members: 2
Total Logged in members: 0
Total guests: 12
Total anonymous users: 0
Most Recent Visitor on: 05/19/2012 06:10 am
The most visitors ever was 1103 on 11/20/2007 12:50 pm

Referrers

Powered by ExpressionEngine