re: POST without submit
Personally I would just put the data in the user's session and remove it in the next page. That's a lot easier than having to generate it in the html in my opinion. You could just use:
Page 1:
PHP Code:
session_start();
$_SESSION['name'] = 'value';
Page 2:
PHP Code:
session_start();
$value = $_SESSION['name'];
unset($_SESSION['name']);
This also means that you don't need to generate more html for every link to a page that you want the use the data in.
By the way, phpasks, what's up with you copying the code/answer people posted before you? You're just restating what's already been said, which is basically spam.
"But you have access to the greatest source of knowledge in the universe."
"Well I do talk to myself sometimes, yes."
"I'm back, and I'm bad! Obviously within certain, sensible, preset parameters"