我正在尝试使用变量创建链接。变量通过html输入字段给出的用户输入获取其内容。
这是我的html和php:
<form action="test11.php" method="post">
<input type="text" name="kunde">
<input type="text" name="nummer">
<input type="submit" value="Erstellen">
</form>
<?php
$fp = fopen("erstellung.html", "w");
fwrite( $fp,'<a href="placeholder"'.$_POST["kunde"].'/'.$_POST["nummer"]);
?>
我以某种方式仅在创建的文件“ erstellung.html”中得到以下行:"<a href="placeholder/"
。用户输入不会添加到链接中。
我们非常感谢所有帮助!
非常感谢!
答案 0 :(得分:0)
我将fwrite行更改为:
fwrite( $fp,'<a href="placeholder'.'/'.$_POST["kunde"].'/'.$_POST["nummer"].'">'.'press'.'</a>');
现在可以正常工作