我的数据库中显示了 2 个结果。这两个结果都代表汽车。我需要在下面创建的表单中显示这些结果。目前它成功显示一个结果,但我需要从这些表中显示几个结果。一旦我开始工作,我会添加更多的汽车。有任何想法吗?
<!DOCTYPE html>
<?php
session_start();
?>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="my.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.2.0/jquery.mobile-1.2.0.min.js">
</script>
<script src="my.js">
</script>
<!-- User-generated css -->
<style>
</style>
<!-- User-generated js -->
<script>
try {
$(function() {
});
} catch (error) {
console.error("Your javascript has an error: " + error);
}
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="page1">
<div data-theme="a" data-role="header">
<a data-role="button" data-theme="d" href="login.html" data-icon="arrow-l" data-iconpos="left" class="ui-btn-left">
Back
</a>
<a data-role="button" href="index.html" data-icon="home" data-iconpos="right" data-theme="d"class="ui-btn-right">
Home
</a>
<h3>
Book Car
</h3>
</div>
<div data-role="content">
<h3>
Select the car to rent from the availability:
</h3>
<br />
<?php
{
mysql_connect("localhost" , "" , "") or die (mysql_error());
mysql_select_db("") or die(mysql_error());
$pid=intval($_SESSION["User_id"]);
$query = "SELECT `car`, `details`, `price` FROM `Car`";
//executes query on the database
$result = mysql_query ($query) or die ("didn't query");
//this selects the results as rows
$num = mysql_num_rows ($result);
while($row=mysql_fetch_assoc($result))
{
$_SESSION['car'] = $row['car'];
$_SESSION['details'] = $row['details'];
$_SESSION['price'] = $row['price'];
}
}
?>
<html>
<body>
<form method="post" action="car.php">
Car: <input type="text" name="country" value="<?php echo $_SESSION['car']; ?>" readonly><br>
Details: <input type="text" name="country" value="<?php echo $_SESSION['details']; ?>" readonly><br>
Price: <input type="text" name="country" value="<?php echo $_SESSION['price']; ?>" readonly><br>
<img style="width: 130px; height: 100px" img alt="car"src="image/astra.jpg" />' />
<input type="submit" value="Submit">
Car: <input type="text" name="country" value="<?php echo $_SESSION['car']; ?>" readonly><br>
Details: <input type="text" name="country" value="<?php echo $_SESSION['details']; ?>" readonly><br>
Price: <input type="text" name="country" value="<?php echo $_SESSION['price']; ?>" readonly><br>
<img style="width: 130px; height: 100px" img alt="car"src="image/audi.jpg" />' />
<input type="submit" value="Submit">
</form>
</body>
</html>