Guys,
I want to mail a dynamic page to a friend:
$fp = fopen ("need the full address", "r");
while (!feof ($fp)) {
$buffer=fgets($fp, 4096);
$message.=$buffer;
}
fclose ($fp);
this is where i have got so far - the problem is getting the full address including the parameters set.
is there a way of getting this and displaying it in the above code so the email can be sent and displayed as an html email etc
thx in advance