Been working on this since yesterday, having no success. I need to get the URL of a parent window into a form field on a child window so that I can send it along with customer from the form. Can anyone tell me how this can be done? I'd prefer it be done with PHP because I'm getting familiar with that.
Please and thanks.
If I did this on the parent page would it stor the parent's URL so that I could retreive it later?
<?php
$_SERVER['PHP_SELF'];
?>
and then to recall it on child perhaps:
if(!empty($_SERVER['PHP_SELF'])){
$link = $_SERVER['PHP_SELF'];
}else{
$link = "No URL submitted.";
}