php页面刷新一次,仅在调用时刷新PHP页面一次

这篇博客讲述了如何使用PHP连接到MySQL数据库,检查特定类型值是否存在。如果不存在,程序会插入新的数据,并在成功后刷新页面。问题在于,当前设置会导致页面无限循环添加相同值。解决方案在于调整代码以防止重复插入。
摘要由CSDN通过智能技术生成

我有一个php,如果它存在于mysql数据库中,它将检查某些值.如果该值不存在,则只需添加该值并刷新页面一次以再次加载页面,现在它在数据库中有一个值,将继续添加其他值.如何在调用页面时只刷新一次页面?

$sname = "W3 schools C# tutorials";//$_POST["sitename"];

$stype = "C#";//$_POST["sitetype"];

$saddy = "www.w3schools.com";//$_POST["siteaddress"];

$scomm = "W3 schools C# tutorials";//$_POST["sitecomment"];

$conn = mysql_connect("localhost","root","password");

if(!$conn){

die("Could not connect: ".mysql_error());

} else {

mysql_select_db("bookmarks",$conn);

$rs = mysql_query("select TypeId from bookmarktypes where TypeName = '$stype'");

$row = mysql_fetch_array($rs);

if($row > 0 ){

//Data found, continue to add...

} else {

//No data... insert a valid one

$rs = mysql_query("insert into bookmarktypes (TypeName) values ('$stype')");

if (!$rs){

die('Error: ' . mysql_error());

} else {

//echo "inserted new type data...";

}

//echo "

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值