[PHP-users 4867] Re: はじめまして!
matsu
php-users@php.gr.jp
Mon, 21 Jan 2002 14:59:49 +0900
matsuです。
みなさん、ありがとうございます。
値を渡す場合は、
押されたかどうか $hoge
関数の引数に使う $str1, $str2
> hoge.html--------------------------------------
>
<html>
<body>
<form action ="hoge.php?$hoge=true&$str1=str1&$str2=str2" method="post">
<input type="text" name="str1">
<input type="text" name="str2">
<input type="submit" value="ぼたん">
<form>
</body>
</html>
> hoge.php --------------------------------------
<?php
if (hoge)
{
?>
[ボタンが押されたときに表示するHTML]
関数の実行(引数$str1, $str2)
<?php
hoge=false;
}else{
<?php
[ボタンが押されたとき以外に表示するHTML]
?>
}
exit;
でよいのでしょうか?