⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editvotes.php

📁 又一个投票系统
💻 PHP
字号:
<?php
require("notaccess.php");
?><?php
$id=$_POST["idd"];
$types=$_POST["types"];
$title=$_POST["title"];
$submit=$_POST["submit"];
$db=@mysql_connect("localhost","root","micronsky.net") or die("数据库连接失败");
mysql_select_db("vote",$db);
if ($submit) {
	$sql="update title set types=$types,title='$title' where id=$id";
	$result=mysql_query($sql,$db);
	echo "<script>alert('修改成功');location.href='vitevote.php';</script>";
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -