View Single Post
Old Jul 4th, 2006, 12:22 PM   #8
Eric the Red
Hobbyist Programmer
 
Eric the Red's Avatar
 
Join Date: Feb 2006
Posts: 214
Rep Power: 0 Eric the Red is an unknown quantity at this point
Not a problem.

Here's the html code for the page:
<html>
<body>
<form action ="action.php" method="post">
<p>Your name: <input type="text" name="strname"/></p>
<input type="submit"/>
</body>
</html>

Here is action.php called by the main page (which is irrelevant to the java program) but you asked for it here it is.
html>
<body>
<?php
$strname=$_POST['strname'];
print "you typed:$strname";
?>
</body>
</html>
__________________
Death smiles at us all. All a man can do is smile back.
Eric the Red is offline   Reply With Quote