我有一个名为 csftdb 的 MySQL 数据库,在该数据库中存在 1 个表:articles。
我还有一系列 PHP 表单,可以在数据库中的表中添加、编辑和删除条目。
但是,现在我尝试添加搜索功能,发现单表方法是不够的。
表格是这样布置的:
id - articletitle - articleorganization - articledate - articleurl - articletags
PHP 表单之一是搜索表单,它可以在标签发挥作用时起作用,例如:
假设数据库中有 3 篇文章:
01 - My first article - Article Corp. - 05/28/2010 - www.articlecorp.com/article1 - php, html
02 - My second article - Article Corp. - 08/11/2012 - www.articlecorp.com/article2 - asp, html
03 - My third article - Article Corp. - 12/22/2011 - www.articlecorp.com/article3 - c++, html
然后我有一个搜索表单,其中包含 Title、Organization、Date、URL 和 Tag(s) 字段。我可以在“标题”字段中搜索“我的第一篇文章”,并且只检索第一个条目,但我也可以在“标题”字段中搜索“文章”,它会检索所有 3 个条目。这是期望的行为。此外,我可以在“标题”字段和“Article Corp”中搜索“文章”。在“组织”字段中,它只会显示与该集合匹配的条目(因此,如果其他组织的文章标题中也有“文章”一词,则这些组织不会出现在结果中。)这也是需要的行为。
但是,如果我在标题字段中搜索“Article”,然后在 Tag(s) 字段中搜索“php, asp, c++”,我的搜索将不会返回任何结果。这不是期望的行为。在这种情况下,“标签”应该允许对搜索结果进行更精细的粒度级别。
所以我可以想象有一千篇文章,所有文章都具有完全相同的标题等信息,但标签组合不同,我可以搜索标签并检索所有仅应用了这些标签的文章。
为此,我在我的数据库中创建了 2 个新表并更改了原来的表,这样我的表现在是:
articles:
id | articletitle | articleorganization | articledate | articleurl
tags:
id | tags
和
articles_tags:
article_id | tag_id
我还有以下从原始表单修改的 PHP 表单:
<?php
function renderForm($articletitle, $articleorganization, $articledate, $articleurl, $articletags )
{
?>
. . .
<div class="content">
<div id="stylized" class="myform">
<form id="form" name="form" action="" method="post">
<h1>Create a new entry in the database</h1>
<table width="100%" border="0" cellpadding="6">
<tr>
<td colspan="2"><legend>Article details</legend></td>
</tr>
<tr>
<td width="20%" align="right"><span class="field">Article Title:</span></td>
<td width="80%" align="left"><span class="field">
<input name="articles.articletitle" type="text" value="<?php echo $articletitle; ?>" size="50"/>
</span></td>
</tr>
<tr>
<td align="right"><span class="field">Article Author:</span></td>
<td align="left"><span class="field">
<input name="articleorganization" type="text" value="<?php echo $articles.articleorganization; ?>" size="50"/>
</span></td>
</tr>
<tr>
<td align="right"><span class="field">Access Date:</span></td>
<td align="left"><span class="field">
<input name="articles.articledate" type="text" value="MM/DD/YYYY" size="50"/>
</span></td>
</tr>
<tr>
<td align="right"><span class="field">Article URL:</span></td>
<td align="left"><span class="field">
<input name="articleurl" type="text" value="<?php echo $articles.articleurl; ?>" size="50"/>
</span></td>
</tr>
<tr>
<td align="right"><span class="field">Article Tags:</span></td>
<td align="left"><span class="field">
<input name="articletags" type="text" value="<?php echo $tags.articletags; ?>" size="50"/>
</span></td>
</tr>
</table>
<footer><input type="submit" name="submit" value="Add this Article"></footer>
</form>
</div>
. . .
</body>
</html>
<?php
}
. . .
if($_SERVER['REQUEST_METHOD'] == 'POST')
{
// get form data, making sure it is valid
$articletitle = mysql_real_escape_string(htmlspecialchars($_POST['articletitle']));
$articleorganization = mysql_real_escape_string(htmlspecialchars($_POST['articleorganization']));
$articledate = mysql_real_escape_string(htmlspecialchars($_POST['articledate']));
$articleurl = mysql_real_escape_string(htmlspecialchars($_POST['articleurl']));
. . .
mysql_query("INSERT articles SET articletitle='$articletitle', articleorganization='$articleorganization', articledate='$articledate', articleurl='$articleurl', articletags='$tags.articletags' ")
or die(mysql_error());
header("Location:addsuccess.php");
}
}
else
{
renderForm('','','','','');
}
?>
但是,我似乎无法将信息存储到我的第二张表中,因此,我无法让我的关系正常工作。
我整天都在看这个,无法弄清楚。