Jump to content

track installes


steviez

Recommended Posts

I did this but it wont work

 

<?php
function isInstalled()
{

$installed_server = $_SERVER['HTTP_HOST'];
$from = "from";
$email = "[email protected]";
$recipient = "[email protected]";
$mail_body = "New install at: ".$installed_server."";
$subject = "New Install";
$header = "From: ". $Name . " <" . $email . ">\r\n";

if($installed == false)
{
mail($from, $subject, $mail_body, $header);
}
return;
}
isInstalled();
?>

Link to comment
https://forums.phpfreaks.com/topic/121741-track-installes/#findComment-628031
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.