hi there... how to fetch all values from query string and list them on my page? thanks in advance.
myphp.phtml?T1=My+Name&... bla bla bla...
form field T1: 'My Name' form field T2: 'My Age' form field Whatver: 'what ever'
while (list ($key, $val) = each ($_GET)) { echo "form field $key: '$val'<br>"; }
thanks!!!