News新闻

业界新闻动态、技术前沿
Who are we?

您的位置:首页      乐道系统FAQ      php实现购物车功能(以大苹果购物网为例)

php实现购物车功能(以大苹果购物网为例)

发布日期:2017-03-09 00:00:00 78

首先是几个简单的登录页面

<body>
<form action="chuli.php" method="post">
 <div style="margin-left: 500px; margin-top: 200px;
  height: 250px; width: 250px; border: 1px dashed black">
  <div style="margin-left: 100px; "><h3>登录</h3></div>
  <div style="margin-top: 20px">用户名:<input type="text" name="uid"/></div><br/>
  <div>密 码:<input type="password" name="pwd"/></div><br/>
  <div style="margin-left: 180px"><input type="submit" value="登录"/></div>
 </div>
</form>
</body>