私は2つのphpファイルを持っており、ボタンをクリックして2つのファイルをリンクしたい..最初のphpファイルのボタンをクリックすると、2番目のphpファイルに転送されます..
1 番目の php ファイルで、ここで s & P データベース ボタンをクリックします。
<html>
<body>
<h1> My System </h1>
<form action="">
<input type="button" value="S & P Database ">
<input type="button" value="Generate Report ">
</form>
</body>
</html>
ボタンがクリックされたときに必要な2番目のphpファイル:
<html>
<body>
<form action="">
<h4><b>Please choose one of the following options below : </b> </h4>
<input type="radio" name="option" value="search" /> Search<br/>
<input type="radio" name="option" value="open database" /> Open Database<br/>
<input type="radio" name="option" value="administrative page "/> Administrative Page <br/>
</form>
// This button doesn't appear in the web page =( .. dunno why
<form action="">
<input type="button" value="Choose ">
</form>
</body>
</html>