Thanks for your time and help, but:
as I stated, I am pretty clueless, and as PHP is so anal and precise, that I'm afraid to mess with the existing script, much, in fear of throwing everything out, simply because I put something where it shouldn't be.
Where would I put such a script, as you detailed in your last message?
here is the PHP script for "sendurl.php":
<?php
$myemail = "governor@governorgirlieman.com";
?>
<style type="text/css">
<!--
.style1 {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.style2 {color: #990033}
body {
background-color: #ff99ff;
}
-->
</style>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
<tr>
<td width=400 height=400 ><p align="center" class="style1"><span class="style2">Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> ) <br>
For sending : <a href="<?php echo $urlis ?>"> <?php echo $sitename ?> </a> (link)<br>
To: <?php echo $friend ?> (<?php echo $friendmail ?>) </span><br>
</p>
<div align="center"><span class="style1"><br>
<a href="<?php echo $redirectlink ?>"> Next Page </a> </span><br>
<?php
$ip = getenv("REMOTE_ADDR");
if (!isset($visitormail) || !isset($friendmail))
echo "<font size=6>You Goofed</font> $ip" ;
$notes = stripcslashes($notes); $messageis = "
Your Friend: $visitor ($visitormail)\n
Sent this URL: $sitename ($urlis) \n
To: $friend $friendmail \n
With These Comments: $notes \n";
$messageme = $ip . " " . $messageis;
$from = "From: $myemail\r\n";
if ($myemail != "")
mail($myemail, $sitename, $messageme, $from);
if ($friendmail != "")
mail($friendmail, $sitename, $messageis, $from);
if ($visitormail != "")
mail($visitormail, $sitename, $messageis, $from);
?>
</div></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<p> </p>
<p>
<!-- ******* End of php script ******** -->
</p>
Where would that thing you sent, go, exactly?