大家好,这是一个简单的问题,但现在我无法想到......
我有一个表格,人们可以插入个人代码,如“Abcdef301”
在提交时,我想将它们重定向到网址:
http://domain.tld/yoururls/Abcdef301
我尝试了一些Post和Get(就像电子邮件一样,但我失败了)
任何帮助?
答案 0 :(得分:0)
<?php
if(isset($_POST['VAI'])) {
if(isset($_POST['text']) && $_POST['text'] != "") {
header("Location: http://domain.tld/yoururls/".$_POST['text']);
} else {
// handle error of no code in form field here if you want to
}
}
?>
<html>
<head>
<title>page title</title>
</head>
<div id="feedback-form">
<div class="success-block"></div>
<form action="" method="post">
<input name="text" placeholder="Inserire Codice Evento" required type="text">
<input type="submit" value="VAI" class="btn">
</form>
</div>
</html>
应该是你想要的。