リクエスト後の2番目のif関数でanotherpost
print $post
何も見えないので、マニュアルを読んで、
1.global $post = $_REQUEST['post'];
でgetpost()
または
2.最初の引数を両方に渡しreturn $post
て
みif
てください。getpost($post)
ありがとう。
//index.php
require 'test.php';
$test = new test();
$test->getpost();
//test.php
class test{
public function getform(){
....
require 'form.php';
}
public function getpost(){
$post = $_REQUEST['post'];
if($_REQUEST['post']){
print $post;
require `form_anotherpost.php`;
}
if($_REQUEST['anotherpost']){
print $post;
}
}
//form.php
<form>
<input type="submit" name="post" value="post">
</form>
//form_anotherpost.php
<form>
<input type="submit" name="anotherpost" value="anotherpost">
</form>