Hey David,
Sorry no one's replied yet. I've read a little bit about postback, but PHP doesn't natively support that functionality, since it seems to be a blending of both client- and server-side functionality.
As long as you write (or have PHP generate) the appropriate javascript to handle resubmitting a form at the appropriate time, there's no reason why you can't mimic ASP's postback functionality.
In fact, most PHP scripts are written such that the same script that generates the form usually receives the submitted data -- the form method is set to post and the action is set to $_SERVER['PHP_SELF']:
echo "<form method=\"post\" action=\"{$_SERVER['PHP_SELF']}\">\n";
Take care,
Nik
http://www.bigaction.org/