?>
</dl>
				<p class="line"></p>
				<dl><strong>调料:</strong><?php 
echo $_html['seasoning'];
?>
</dl>
		</div>
	</div>
	<div id="food_detail_bottom">
		<div id="cooking">
			<dl>
				<dt><strong class="cooking">做法</strong><strong class="comment" >评价</strong></dt>
				<p class="line"></p>
				<dd><?php 
echo _wrap($_html['content']);
?>
</dd>
			</dl>
		</div>
		<div id="comment">
			<dl>
				<dt><strong class="cooking">做法</strong><strong class="comment" >评价</strong></dt>
			</dl>
			<p class="line"></p>		
				<?php 
while (!!($_rows2 = _fetch_array_list($_result2))) {
    $_html2 = array();
    $_html2['id'] = $_rows2['id'];
    $_html2['order_id'] = $_rows2['order_id'];
    $_html2['food_id'] = $_rows2['food_id'];
Esempio n. 2
0
function drop_db($database = "")
{
    global $config;
    if (!$database) {
        $database = $config['database'];
    }
    execute("DROP DATABASE " . _wrap($database));
}