hi all, l created php submission script and l wanted to how l can create another script which allows me to view all the submissions made in an orderly manner?

Recommended Answers

All 4 Replies

You can't do that in PHP.
Log the submissions to a text file and view it with 'tail -f theLogFile.txt' from a console window (assuming you are using linux).

what do you mean by submission script???Do you mean entering data in form or entering data in database????
Specify....

what do you mean by submission script???do you mean entering data in form or entering data in database????
Specify....

i mean that i hav a form for entering data and i want to kno how to be able to view the posted data on another form?

ok...then to view the data on posted form i m giving u a small example...and you will hopefully understand it clearly..

first 1 form...
form.html

<form method="POST" action="display.php">
Enter Your name:<input type="text" name="name">
<input type="submit" name="submit" value="submit">
</form>

now to get data submitted in this form...
display.php

<?php
echo "Your name is".$_POST['name'];
?>

PS-If your problem is solved mark the thread as solved

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.