Date: 07/10/01
- Next message: Kurt Lieber: "[PHP] examples of using PHP to control .htaccess"
- Previous message: Don Read: "RE: [PHP] Variables"
- In reply to: James Bartlett: "[PHP] Variables"
- Next in thread: Maxim Maletsky: "RE: [PHP] Variables"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
try this little form example out:
--------------example.php--------------
<?php
if ( (isset($t1))&&(isset($t2)) ) {
if ($t1==$t2) {
echo "they are equal";
} else {
echo "they are not equal";
}
}
?>
<html>
<body>
<br>
<br>
<form name="form1" method="post" action="<?=$PHP_SELF?>">
<input type="text" name="t1">
t1<br>
<input type="text" name="t2">
t2 <br>
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>
-------------/example.php--------------
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Kurt Lieber: "[PHP] examples of using PHP to control .htaccess"
- Previous message: Don Read: "RE: [PHP] Variables"
- In reply to: James Bartlett: "[PHP] Variables"
- Next in thread: Maxim Maletsky: "RE: [PHP] Variables"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

