Jump to content

Need help echoing Text


jwilh

Recommended Posts

Here's what you're after:
[code]
<?php
if (isset($_POST['name'])) echo "<p>Name entered: $_POST[name]</p>\n";
?>

<form name="myName" action="" method="post">
Name: <input type="text" name="name" value="" /><br />
<input type="submit" name="submit" value="Submit" />
</form>
[/code]
That worked perfect, any chance I can get you to point me in the direction of some tutorials to take that a step farther. ( use a cookie of some sort to check Ip addy and compare it to the name to see that it is really that person?) Thanks for the help, that really helped me alot!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.