
July 5th, 1999, 05:51 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Do you mean a parameter that you've sent along from another page, or do you mean getting the URL that linked to your page?
In the first case you just send it along with the URL from the previos page. Somerthing like:
<a href="your_page.html?parameter=value">go!</a>
In the other case:
<script language="JavaScript">
if (document.referrer){
document.write("You came from " + document.referrer);
}
</script>
Hope I helped you out!
|