我想保存表单数据,转换为php(我已经有了它的部分,它的设计和样式在css中)我想保存它,以便表单在每个人的页面上都可用看,这样当我刷新页面时,具有表单信息的div就会停留在那里。
<form name = "quoted" form action="genericwebpage.html" method="post">
<input id = "poster" type="text" name="poster" placeholder = "Credited Individual."> <br>
<textarea class = "actual-quote" name = "actual-quote"placeholder = "Write the quote here!"></textarea><br><br>
<input id = "submit1" type="submit">
</form>
这里是在网页上找到的php。
<div class="wrapper">
<div class="submissions">
<div class="logo-logo"><h2>Generic.</h2></div>
<div class="top-submit"><?php echo $_GET['actual-quote']?></div>
<div class="poster"><?php echo $_GET['poster']?></div>
</div>
任何建议,都非常欢迎。 谢谢! -Connor
答案 0 :(得分:0)
首先,您需要将$ _GET更改为$ _POST,因为您的表单有一个post方法。这应该使得当提交表单时,数据将显示在您回显它的div中。但是,这只是暂时的......除非您将其保存在数据库中,否则“每个人都不会看到”。
答案 1 :(得分:-1)
您必须使用本地存储或服务器端脚本(例如PHP)。