我需要一个带有一个输入的表单(例如“数字”),在sumbit将broswer重定向到http://staticurl/ [number] 之后.html 我该怎么办?
答案 0 :(得分:0)
header('location: http://staticurl/'.$_POST['number'].'html');
也许?
答案 1 :(得分:0)
解决了
<script type="text/javascript">
function goTo()
{
var NUM= document.forms[0].NUM.value;
var URL = 'http://staticurl/'
window.location = URL+NUM+'.jpg';
return false;
}
</script>
和
<form action="" method="get" onsubmit="return goTo()">