wish_remove.fw.php
来自「A website for keeping track of wishes fo」· PHP 代码 · 共 17 行
PHP
17 行
<?php
//from a post on wish remove with wishid. change that post into ?remove=$wishid
if (isset($_POST['wishid'])) //sanitise
{
$go=$_POST['wishid'];
header("Refresh: 1; URL=wish_remove.php?remove=$go");
echo "sending you forward";
}
else
{
//send home
header("Refresh: 1; URL=index.php");
echo "sending you back home";
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?