i have v. simple form ...
i want to caputure the user's input, sotre it and when the user submits again with new input.. the new input should be added to the perviuos one and so on on each submit..
my scripts as below :-
<?php
echo "<form method=post action=$PHP_SELF?color=$color>";
echo "Type your favorite color: <input name=color>";
echo "<input type=submit value=submit>";
echo "<input type=reset value=reset>";
echo "</form>";
if(!$color=="")
{
$more .=$color;
}
echo "My Favorite colors are: $more and ";
?>
i know it might sound easy ... but i m really having trouble to sort it out how to?................. pleeeeeeese help
thanks indeed