ユーザーが購入履歴を表形式で表示できる請求履歴ページを作成しようとしています。ユーザーが各注文の完全な請求書の詳細を確認できるように、各行にリンクを追加しようとしています。
彼らがリンクをクリックすると (このスクリプトの後に概要ページのスクリプトを含めました)、このスクリプトはクエリを実行するはずですが、空のメッセージ クエリが表示されます。
誰でもエラーを見つけることができますか?
ありがとう!!
ユージェニー
<?php
include("mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$host="localhost"; // Host name
$username="user"; // Mysql username
$password="pass"; // Mysql password
$db_name="db"; // Database name
$tbl_name="table"; // Table name
// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
// get value of id that sent from address bar
$TicketID=$_GET['TicketID'];
// Retrieve data from database
$sql="SELECT * FROM $tbl_name WHERE TicketID='$TicketID'";
$result=mysql_query($sql);
$rows=mysql_fetch_array($result);
// Get a specific result from the "example" table
$result = mysql_query($Sql) or die(mysql_error());
echo "<table width='100' border='1' cellpadding='0' cellspacing='0' id='records'>";
print "<h3 align='center'><strong>Billing History</strong></h3><p>";
echo "<tr>
<th width='110' align='center'>Billing Date</th>
<th width='80' align='center'>Ticket #</th>
<th align='center'>Project Title </th>
<th width='80' align='center'>Total GBP</th>
</tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr height='22' width='100' bordercolor='343434' align='center'><td>";
echo $row['date'];
echo "</td><td> ";
echo $row['TicketID'];
echo "</td><td> ";
echo $row['project'];
echo "</td><td> ";
echo $row['grandTotal'];
}
echo "</table>";
include(XOOPS_ROOT_PATH."/footer.php");
?>
これは、完全な請求履歴を表示するスクリプトで、クエリを実行するスクリプト (上記) へのリンクが含まれています。
<?php
include("mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$host="localhost"; // Host name
$username="username"; // Mysql username
$password="password"; // Mysql password
$db_name="db name"; // Database name
$tbl_name="tbl name"; // Table name
// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $tbl_name WHERE uid='";
$sql=$sql . $xoopsUser->uid("s") . "' AND Paid='Y'";
$result=mysql_query($sql);
?>
<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<table width="400" border="1" cellspacing="0" cellpadding="3">
<tr>
<td colspan="4"><strong>List data from mysql </strong> </td>
</tr>
<tr>
<td align="center"><strong>Billing Date</strong></td>
<td align="center"><strong>Invoice Number</strong></td>
<td align="center"><strong>Description</strong></td>
<td align="center"><strong>Total GBP</strong></td>
<td align="center"><strong>View</strong></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td><? echo $rows['date']; ?></td>
<td><? echo $rows['TicketID']; ?></td>
<td><? echo $rows['project']; ?></td>
<td><? echo $rows['grandTotal']; ?></td>
<td align="center"><a href="http://website.co.uk/site/viewInvoice.php?TicketID=<? echo $rows['TicketID']; ?>">View</a></td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
</table>
<?php
mysql_close();
include(XOOPS_ROOT_PATH."/footer.php");
?>