Jump to content

Storing data with echo?


mburt

Recommended Posts

Hi. I want to make a basic page where a form puts data into a page and it stays there. Like a comment box.

Here's my html:
[code]<html>
<head>
</head>
<body>
<form action="submit.php" method="post">
<p>Your name: <input type="text" name="name" /></p>
<p>Your age: <input type="text" name="comment" /></p>
<p><input type="submit" /></p>
</form>
</body>
</html>[/code]

and the PHP

[code]<html>
<head>
  <title>PHP Test</title>
</head>
<body>
<b><?php echo $_POST['name']; ?></b>
<hr>
<?php echo $_POST['comment']; ?>
<hr>
</body>
</html>[/code]

So my question is: How can I store data onto that page?
Link to comment
https://forums.phpfreaks.com/topic/18894-storing-data-with-echo/
Share on other sites

Excuses, but I don't understand the question. You want to store data on the compiled apge, that is shown to user, and than to get it back? If "yes", than use hidden forms, like this:

[code]<form action="your.php" method="post">
<input type="hidden" name="data" value="datadatadatadatadatadatadatadata">
<input type="submit" value="send">
</form>[/code]
Link to comment
https://forums.phpfreaks.com/topic/18894-storing-data-with-echo/#findComment-81585
Share on other sites

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.