zeiyon
05-07-2004, 10:51 AM
Well with 4 years experience in networking alas I had found my destination - web hosting and marketting.
Well all hard work has to payout one day or the other. Well it applies to everyone.
So I begin to post all my expereinces in areas of PHP , well I'm not a PHP expert , mostly my expertise holds in the are of C,C++,Vc++ advance stuffs.
Well for first phase - I was trying to work out my first website the zeiyon.com It is all about web hosting, hehe even though I had created a lot of wacky stuffs for the internet it was really a pain just designing a basic site.
If u a r a pro in any platform it holds good for all others.
Here is a spec when u want to find whether a URL is available / not, similar principles can be addopted if ur wanting to receive a opt in email & want to verify whether the email is actually present :
Assumptions : Say u hardcode some URL
<?php
$DomainName="www.google.com";
$TempName=gethostbyname($DomainName);
if(strcmp($TempName,$DomainName)==0)
<URL Does not exists>
else
{
URL Exists
}
?>
Well the same type of technicque can be used for testing emails , which I will be covering depending on ur feed back.
On my next post I will tell u how to intergrate it with a text box in ur site.
Well u can visit my site www.zeiyon.com , it is not yet complete , so u cant purchase any from it. but probably check it out & comment on it & I will be enthusiastic in sharing all my day today experiences with you.
Well all hard work has to payout one day or the other. Well it applies to everyone.
So I begin to post all my expereinces in areas of PHP , well I'm not a PHP expert , mostly my expertise holds in the are of C,C++,Vc++ advance stuffs.
Well for first phase - I was trying to work out my first website the zeiyon.com It is all about web hosting, hehe even though I had created a lot of wacky stuffs for the internet it was really a pain just designing a basic site.
If u a r a pro in any platform it holds good for all others.
Here is a spec when u want to find whether a URL is available / not, similar principles can be addopted if ur wanting to receive a opt in email & want to verify whether the email is actually present :
Assumptions : Say u hardcode some URL
<?php
$DomainName="www.google.com";
$TempName=gethostbyname($DomainName);
if(strcmp($TempName,$DomainName)==0)
<URL Does not exists>
else
{
URL Exists
}
?>
Well the same type of technicque can be used for testing emails , which I will be covering depending on ur feed back.
On my next post I will tell u how to intergrate it with a text box in ur site.
Well u can visit my site www.zeiyon.com , it is not yet complete , so u cant purchase any from it. but probably check it out & comment on it & I will be enthusiastic in sharing all my day today experiences with you.