本文章來給各位朋友講一下php 產品進銷存管理系統開發實例教程哦。我們先看看有那些功能
本文章來給各位朋友講一下php教程 產品進銷存管理系統開發實例教程哦。我們先看看有那些功能
首頁文件 index.html
<HTML>
<HEAD>
<TITLE> 產品進銷存管理系統 </TITLE>
</HEAD>
<BODY>
<table border="0" width="100%" cellpadding="2" height="12">
<tr>
<td width="100%">
<h2 align=center> 產品進銷存管理系統</h2>
</td>
</tr>
<tr>
<td width="100%" height="6">
<p align="center">
<a href="index.html"><font color="#008000">返回首頁</font></a>
<font color="#8EB4D9">|</font>
<a href="reg.php"><font color="#008000">注冊</font></a>
<font color="#8EB4D9">|</font>
<a href="login.php"><font color="#008000">登錄</font></a>
<font color="#8EB4D9">|</font>
<a href="addcompany.php"><font color="#008000">添加廠商</font></a>
<font color="#8EB4D9">|</font>
<a href="addproduct.php"><font color="#008000">添加產品</font></a>
<font color="#8EB4D9">|</font>
<a href="buy.php"><font color="#008000">進貨</font></a>
<font color="#8EB4D9">|</font>
<a href="sell.php"><font color="#008000">銷售</font></a>
<font color="#8EB4D9">|</font>
<a href="browse.php"><font color="#008000">查看存貨</font></a>
<font color="#8EB4D9">|</font>
<a href="logout.php"><font color="#008000">注銷</font></a>
</td>
</tr>
<tr><td height=30></td></tr>
<tr><td align=center>
<h2><font color=blue >歡迎光臨進銷存管理系統!</font></h2>
</td></tr>
</table>
</BODY>
</HTML>
1 2 3 4 5 6 7 8 9 10 11 12 13