如何使用php函数发送表单?
示例
solution
PHP代码
function xxx1() { echo '<input type="text" name="xxx1" />'; }
function xxx2() { echo '<input type="text" name="xxx2" />'; }
有可能吗?
答案 0 :(得分:0)
在函数周围添加php标签。 我在以下问题中测试了您的代码,一切正常。
<?php
function xxx1(){ echo '<input type="text" name="xxx1" />'; }
function xxx2(){ echo '<input type="text" name="xxx2" />'; }
?>
<form method="POST" action="">
<?php
xxx1();
xxx2();
?>
</form>