0

我有一个表格,表格方法设置为发布。它与创建会话的第二个文件连接。我想使用 PHP 自动从第二个文件创建一个具有唯一 url 的页面并重定向到该页面。如果可能,在创建的页面中插入一些代码。这是表单代码:

    <form action="file_upload.php" method="post"
enctype="multipart/form-data">

Title: <input type="text" name="file_title" maxlength="55" required><br>
Description: <input type="text" name="file_description" maxlength="80" required><br>
<input type="submit" value="Title Magic"> 
</form>

这是第二个文件代码:

$title = substr($_POST['file_title'],0,55); 
$description = substr($_POST['file_description'],0,80);

if(isset($_POST['file_title']))
    $_SESSION['ses_file_title'] = $_POST['file_title'];

if(isset($_POST['file_description']))
    $_SESSION['ses_file_description'] = $_POST['file_description'];

我希望它做的是重定向到具有唯一 url 的页面并回显这些语句。

4

2 回答 2

1

您必须在隐藏字段中获取一个值,然后使用 if(isset()) 条件将其转发到 $abc 变量中,之后用于重定向使用<script>window.location="filename.php?edt=<?php echo $abc ?>"</script> ,您将在下一页获得会话 ID,并使用 MySql 检索自动创建的数据页面...希望这会有所帮助

于 2013-05-01T10:04:23.607 回答
0

您可以在隐藏字段中添加您的代码或使用 file_upload.php?code=yourcode 并且您可以通过请求访问它并使用下面的 php 代码进行重定向。

header('Location: unique url ');

于 2013-05-01T10:15:18.297 回答