我已将此代码与html表单按钮连接
<?php
$old= "/Full"; $new= "/only";
if ( $_POST ) {
$old= $new;
header('Location: $old'); }
else {
header('Location: $old');
我想在没有sql的情况下保存输入,例如替换 保存但没有数据库的代码是否可能?
我的老问题要理解Path changer in Admin Dashboard
答案 0 :(得分:1)
根据评论中的对话,您可以将其放在.json
文件中:
paths.json
{
"oldPath": "/Full",
"newPath": "/only"
}
您-PHP-file.php
<?php
// Decode the JSON into a PHP array
$json = json_decode(file_get_contents("paths.json"), true);
// If a POST request was submitted
if ( $_POST ) {
// Redirect the user to the newPath
header('Location: ' . $json['newPath']);
} else {
// Otherwise redirect them to the old path
header('Location: ' . $json['oldPath']);
}
必须在PHP配置中正确启用和配置 file_get_contents()
。