本文整理匯總了PHP中Network::Insert方法的典型用法代碼示例。如果您正苦於以下問題:PHP Network::Insert方法的具體用法?PHP Network::Insert怎麽用?PHP Network::Insert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Network
的用法示例。
在下文中一共展示了Network::Insert方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Network
<?php
if (isset($_POST['submit'])) {
require 'include/config.php';
require 'include/class.network.php';
$n = new Network($db);
$n->Insert($_POST);
Misc::Redirect('network_list.php');
}
include 'include/top.php';
?>
<form method="post">
<p>
<label><span>Name</span></label>
<input type="text" name="name" id="name" placeholder="Enter network name" />
</p>
<p>
<label><span>Syntax</span></label>
<input type="text" name="syntax" id="syntax" placeholder="Enter network syntax" />
</p>
<p>
<input type="submit" name="submit" value=" Add " />
</p>
</form>
<?php
include 'include/bottom.php';