使用以下表单从数据库中获取和显示搜索项。
<?php
include('search.class.php');
$search = new search;
//table to search
$search->table = 'xxxxxx';
//array to show results
$result = array('Column1', 'column2');
?>
<p> Insert a field to search</p>
<p> For user between, an not between, use the boollean operator AND </p>
<p> For search with more words, use the boollean operator OR</p>
<form action="<?=$_SERVER['PHP_SELF']?>" method="post">
<?=$search->fieldSelect()?>
<?=$search->whereSelect()?>
<?=$search->fieldText(10,20)?>
<input type="submit" name="submit" value="submit" />
</form>
<?=$search->result($result)?>
结果显示在最后一行之后。
如何在整洁的桌子上展示它们?