我有一些問題編輯我的代碼使用PHP的foreach函數。我的「transactiondata」div用於從我的表中提取交易信息。我想使用foreach()爲我的表中的每一行創建一個新的div部分。然而,當編輯我的div來包含foreach()時,我拋出了一大堆錯誤,所以我回到了方塊1.完成這個任務的最好方法是什麼?PHP的foreach問題
<?php
include('cn.php');
session_start();
$userUsername = $_SESSION['loggedInUser'];
$sql = "SELECT * FROM transactions WHERE
UserID = '" . $userUsername . "'";
$result = mysql_query($sql, $cn) or
die(mysql_error($cn));
$row = mysql_fetch_assoc($result);
$RequestBody = $row['RequestBody'];
$ResponseBody = $row['ResponseBody'];
parse_str($RequestBody);
parse_str($ResponseBody);
?>
<!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>
<title><?php echo $userUsername; ?>'s Profile - Test 2013</title>
<style>
.userstatustext
{
position: absolute;
top: 0px;
right: 5px;
}
.transactiondata
{
position: absolute;
padding: 5px;
top: 170px;
left: 75px;
width: 900px;
height: 400px;
overflow-x: hidden;
background: #B2B2B2;
border: 1px solid black;
word-break: break-all;
word-wrap: break-word;
}
</style>
</head>
<body>
<table border="0" cellpadding="10">
<tr>
<td>
<img src="../images/api_rat.png">
</td>
<td>
<h1>Transactions - Test 2013</h1>
</td>
</tr>
</table>
<div class="userstatustext">
<h5>Welcome, <?php echo $userUsername; ?>!</h5>
<h5><a href="logout.php">[LOGOUT]</a></h5>
</div>
<h3>Your most recent transactions:</h3>
<div class="transactiondata">
<p><h4>Timestamp: </h4><?php echo date("F j, Y g:i a", strtotime($TIMESTAMP)); ?></p>
<p><h4>Payment Status: </h4><?php echo $ACK; ?></p>
<?php
if(isset($CORRELATIONID))
{
echo "<p><h4>Correlation ID: </h4></p>";
echo $CORRELATIONID;
}
?>
<?php
if(isset($TRANSACTIONID))
{
echo "<p><h4>Transaction ID: </h4></p>";
echo $TRANSACTIONID;
}
?>
<p><h4>Errors Returned (if any): </h4>
<a href="https://www.testsite.com/test/search.php?query=<?php echo $ERRORCODE; ?>&search=Search">
<?php echo $ERRORCODE; ?>
</a>
</p>
<p><h4>Request Body: </h4><?php echo $RequestBody; ?></p>
<p><h4>Response Body: </h4><?php echo $ResponseBody; ?></p>
</div>
</body>
</html>
什麼的foreach?在你的代碼中沒有一個... –
你得到了什麼錯誤? –
@MarcB可能不是單次調用'$ row = mysql_fetch_assoc($ result);'他想在foreach中調用它,或者在... – shadyyx