Heim >Backend-Entwicklung >PHP-Tutorial > PHP下include包含文件有关问题

PHP下include包含文件有关问题

WBOY
WBOYOriginal
2016-06-13 12:31:54870Durchsuche

PHP下include包含文件问题
我的代码:

<?php<br />
		require("header.inc.php");<br />
<br />
		function __autoload($className)<br />
		{<br />
			include $className."__class.php";<br />
		}<br />
<br />
		$DbModle=new ProductModle();<br />
		$allProduct=$DbModle->selectAllProduct();<br />
		if($allProduct)<br />
		{<br />
			echo '<table align="center" width="90%" border="1">';<br />
			echo '<caption>商品列表</caption>';<br />
			echo '<th>产品ID</th><th>名称</th><th>价格</th><th>编辑</th>';<br />
			foreach($allProduct as $product)<br />
			{<br />
				echo '<tr>';<br />
				echo '<td>'.$product->getId().'</td>';<br />
				echo '<td>'.$product->getName().'</td>';<br />
				echo '<td>'.$product->getPrice().'</td>';<br />
				echo '<td>';<br />
				echo '<a href="editview.php?action=modify&productID='.$product->getId().'">修改</a>';<br />
				echo '<a href="control.php?action=delete&productID='.$product->getId().'">删除</a>';<br />
				echo '</td></tr>';<br />
			}<br />
			echo '</table>';<br />
		}<br />
		else<br />
		{<br />
			echo '<p align="center">没有任何商品</p>';<br />
		}<br />
		echo '<center><a href="editview.php?action=add">添加商品</a></center>';<br />
		require("footer.inc.php");<br />
	?>

运行截图:

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel: PHP 5.5.6 公布 Nächster Artikel: mysqli->fetch_assoc有关问题