这是playingcards-quote.php
<div class='container'>
<label for='name' >First Name*: </label><br/>
<input type='text' name='name' id='name' maxlength="50" value="<?php if(isset($_POST['name'])) { echo htmlentities($_POST['name']);
}?>" /><br />
<span id='contactus_name_errorloc' class='error' style="font-size: 12px;"></span>
</div>
重定向页面与form data
playingcards-quote.php
<div class='container'>
<label for='name' >First Name*: </label><br/>
<input type='text' name='name' id='name' maxlength="50" value="<?php if(isset($_POST['name'])) { echo htmlentities($_POST['name']);
}?>" /><br />
<span id='contactus_name_errorloc' class='error' style="font-size: 12px;"></span>
</div>
我无法在重定向页面上存储表单的输入数据......两种表单都有相同的输入数据格式 我有两页.both有相同的输入形式值 当我提交一个页面的表单值时,应该在重定向表单页面中看到相同的值
答案 0 :(得分:-1)
试试这个。希望这会给你一个想法。除非我误解了
$links = DB::table('messages')
->join('users', 'users.UserId', '=', 'messages.UserId')
->select('messages.*', 'users.UserName')
->get();
你的表格2是“pass2.php”
<html>
<head>
</head>
<body>
<form action="pass2.php" method="Post">
<input type='text' name='name' id='name' maxlength="50" />
<input type="submit" value="Submit"/>
<form/>
<body/>
</html>