hi folks,

i want to call an url wihtout opening a page. I explain.

I have this function:

function send_email($num, $tel)
{

echo "<script language='JavaScript'>";
echo "window.open('http://www.shawpaging.ca/PAGESCRIPT?pin=$tel&message=$num')";
echo "</script>";
}

Everytime i call this function, in reality all i want to do is to send a page via the webpage, i dont need to see the page. Also, its kind of annoying to see, like, 3 or 4 page which open.

Any idea how i could execute a page without opening another browser?

thanx in advance,

Jacinthe

    You can create a link with
    echo "<a href=..></a>";

    or you use include to execute the file on the current place
    include("<filename>");

    Hope this helps ... 🙂

    Best regards,
    Mike

      Write a Reply...