我对 PHP 有点困惑。这是一个简单的问题
我想提交一个表格。例如:
<form name='formname' action='code.php' method="POST">
<input name='inputname' type='text'/>
<input type='submit'>
</form>
因此,服务器获取输入的任何内容,并且为了参数,它添加cool
到文本的末尾并回显$inputname.'cool text you got there';
如何获得该响应并在我的 javascript 中使用它?