./topimag900x150

www.h2caster.net

Linux&LAMP PHP&MySQL GPS&PDA BikeTrial blog Others

PHPで作るインタラクティブなページ

PHP はブラウザから値を受け取って処理して返すというインタラクティブなページ作りのためのスクリプト言語である。と、、思う。(自信なし)

インタラクティブなページを作る。(ブラウザから値を受け取る)

<html>
<HEAD>
<TITLE>タイトルはテスト4 入力</TITLE>
</HEAD> 
<body>
<form action="test4.php" method="post">
Aの値は<input type="TEXT" name="dataa" size=20 maxlength=20 >
<BR>
Bの値は<input type="TEXT" name="datab" size=20 maxlength=20 >
<BR>
<input type="submit" name="exec" value="入力データをおくる">
<BR>
<input type="reset" name="exec" value="やりなおし">
</body>
</html>

Copyrite 2005 caster productions

www.h2caster.net