我很擅長網站開發,但最近開始使用PHP並開發了幾個網站。我自己學習並根據需求開發網站,並且能夠毫無問題地完成這項工作。但我很困惑我的做法是否符合行業標準是正確的。 我看到一些使用MVC的代碼。這是我們需要遵循的最佳實踐方法。大公司如何遵循? 請忽略語法錯誤, 範例模型我使用PHP網站開發設計策略
插入記錄:
$sql = "insert into ....";
myql_query ($sql) or die (mysql_error());
顯示
<table> <tr><th>Slno</th> <th> Customer name </th>.... </tr>
<?php
$rs = mysql_query ("select * from customers");
while ($row = mysql_fetch_array($rs))
{
?>
<tr>
<td> <?php echo $row["slno"];?> </td>
<td> <?php echo $row["customername"];?> </td>
</tr>
<? }?>
</table>
我會試試codeIgniter – AjayR 2011-04-27 05:38:08