PHPについて非常に基本的な質問があります。だから、それはindex.php
フォームを含むものがあります。このフォームには入力フィールドが含まれていますfield1
:
index.php
<div id="container1">
<form name="optform" method="post" action="processing.php">
<div class = "box">
<label for="field1"><span>Bla bla bla:</span></label>
<input type="text" class="input-text" value="5" size="11" maxlength="11" name="field1" id="field1">
</div>
<br/>
<div class="buttons">
<a href="" class="regular" onclick="click_function();return false;">Run</a>
</div>
</form>
</div>
<div id="container2">
</div>
<script language="javascript">
function click_function() {
$('#container2').load('processing.php');
}
</script>
field1
と呼ばれる別のPHPファイルの値を使用する必要がありますprocessing.php
。では、どうすればこの値を読み取ることができますprocessing.php
か?でこのようなことをする必要がありますprocessing.php
:?
処理.php
$field1value = $_POST["field1"];