本文整理汇总了PHP中Computer::Order方法的典型用法代码示例。如果您正苦于以下问题:PHP Computer::Order方法的具体用法?PHP Computer::Order怎么用?PHP Computer::Order使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Computer
的用法示例。
在下文中一共展示了Computer::Order方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/order.css?v=0.0.1" />
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<!--script type="text/javascript" src="js/order.js"></script-->
</head>
<body>
<?php
if (isset($_POST["txtComputer2"])) {
} else {
if (count($computers) == 1) {
$user_name = User::GetCookie_UserName();
DBConnection::Connect();
Computer::Order($computers[0], $user_name);
DBConnection::Close();
// Yes, not valid html, but browsers can handle it, and we are out of time :(
?>
<div class="ordered">
Your order is reserved!
<br />
Happy programming!
<br />
<br />
<input type="button" value="Close" onclick="window.parent.location.href = window.parent.location.href;" />
</div>
<?php
} else {
?>
<form name="frm" method="post">