|
|
DOMAIN
NAME RESERVATION FOR .MU, .COM, .NET, .ORG, .BIZ, .INFO
Home >
Services >
Domain Name Services
Reputable Business
We operate a quick and simple domain name registration
service. This can all be done online. We have been
in business nearly 3 years and have registered hundreds
of domain names for companies in Mauritius and abroad,
from the smallest to the largest, including Rogers
Group in Mauritius who are the biggest company
in Mauritius. Now introducing the popular .MU,
.CO.MU, .COM.MU, .NET.MU
and ORG.MU to the more recent additions
AC.MU.
After Domain name registration
Once you have completed the domain name registration
process, your domain name can be live within 72 hours
from time of confirmation. |
include'../securedzone/connectionmarketing.inc';
// include'../connectionmarketing.inc';
//query table advertiser to have advertiserid
$query_advertiser="select * from advertisers where dynaurl='$dynaurl'";
$result_advertiser=sendquery($query_advertiser);
$numrows_advertiser=numrows($result_advertiser);
//echo"numrows_advertiser-$numrows_advertiser";
if ($numrows_advertiser>0)
{
$advertiserid=mysql_result($result_advertiser,0,"advertiserid");
$advertiser=stripslashes(trim(mysql_result($result_advertiser,0,"advertiser")));
$title=mysql_result($result_advertiser,0,"title");
$email=stripslashes(trim(mysql_result($result_advertiser,0,"email_1")));
$managersurname=stripslashes(trim(mysql_result($result_advertiser,0,"managersurname")));
$managername=stripslashes(trim(mysql_result($result_advertiser,0,"managername")));
$address=stripslashes(trim(mysql_result($result_advertiser,0,"address")));
$town=stripslashes(trim(mysql_result($result_advertiser,0,"town")));
$phone=stripslashes(trim(mysql_result($result_advertiser,0,"phone_1")));
$todaydate=date("Y-m-d");
$time=date("H:i:s");
$ipvisit=$REMOTE_ADDR;
//insert into table icsm_domain_name_client_tracking
if ($trackid=='')
{
$query_insert="insert into icsm_domain_name_client_tracking (advertiserid,datevisited,timevisited,ipaddress) values ('$advertiserid','$todaydate','$time','$ipvisit')";
$result_insert=sendquery($query_insert);
$trackid=mysql_insert_id();
$query_page_viewed="insert into icsm_domain_name_client_page_visit (trackid,pagevisited,timevisited) values ('$trackid','domainnameindex','$time')";
$result_page_viewed=sendquery($query_page_viewed);
}
else
{
$query_page_viewed="insert into icsm_domain_name_client_page_visit (trackid,pagevisited,timevisited) values ('$trackid','domainnameindex','$time')";
$result_page_viewed=sendquery($query_page_viewed);
}
$subject="$advertiser has just come on the index page for domain name services";
$message="
Please find below all details concerning $advertiser who came on the domain name services index pages.
<----------------- Company Information ------------->
Manager name: $managername
Manager Surname: $managersurname
Manager Email: $email
Company Phone: $phone
Company Address: $address
Company Town: $town
<------------------- Other Information --------------->
Date visited: $todaydate
Time Visted: $time
IpAddress: $ipvisit
";
//mail("lindsey@icsm.biz",$subject,$message,"From: domain@icsm.biz");
//mail("hgrignon@icsm.biz",$subject,$message,"From: domain@icsm.biz");
}
//domain_name_registration_for_mauritius_country_tld1.html
?>
|