First of all, CGI is not DHTML. DHTML is a combination of CSS, HTML, and scripts (javascript, vbscript), to give a client-side dynamic page. Secondly, the easiest way will be headers. Lets say, when you post this data to your shopping cart page, you also send a GET arguament, like
page?goto=next_html_file.htm
then, after your shopping cart has done its work, it sends a header to redirect the users browser to the value of goto. In php, I would do this;
PHP Code:
<?php
if(isset($_GET['goto'])) {
header("location: ".$_GET['goto']);
}
?>
__________________
Theres 10 types of people; those who understand binary, and those who don't.
webmaster and webdeveloper resources, http://www.webworrks.com
|