我的网页有一个问题我想要用户输入(文本/选择值和图片),然后将它们处理成一个新的HTML页面,其标题与我已经有一个DragnDrop区域相同的图片推送图片到/上传
当用户按下提交按钮时全部发生。
<div id="container">
<div id="content-left">
<h1>Mbushi të dhënat për kontakt</h1>
<form>
<label for="title">Title</label>
<input type="text" name="title"><br>
<label for="male">Sell</label>
<input type="radio" name="option" id="male" value="male"><br>
<label for="female">Buy</label>
<input type="radio" name="option" id="female" value="female"><br><br>
g
<input type="submit" value="Submit">
</form>
</div>
<div id="dropbox">
<span class="message">Zhvendosni fotot këtu për ti ngarkuar.<br><i>Limiti 1mb për foto.</i></span>
</div>
我是PHP的新手,我希望如何将其处理为具有预定义样式的新制作网页。
我已将所有内容设置为.php网站。我只是错过了这个来处理用户输入。
答案 0 :(得分:0)
<form action="WRITE_THE_PATH_TO_FILE_HERE.php" method="GET">
<label for="title">Title</label>
<input type="text" name="title"><br>
<label for="male">Sell</label>
<input type="radio" name="option" id="male" value="male"><br>
<label for="female">Buy</label>
<input type="radio" name="option" id="female" value="female"><br><br>
<input type="submit" value="Submit">
</form>
然后在PHP中检查传递给页面的内容
<?php
var_dump($_GET) ;
if (isset($_GET['title'], $_GET['option'])){
echo "Title and option have been submitted" ;
}
?>