<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Altmint Blog</title>
	<atom:link href="http://blog.altmint.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.altmint.com</link>
	<description></description>
	<lastBuildDate>Fri, 23 Apr 2010 12:28:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to check Link popularity or back links for a domain in php</title>
		<link>http://blog.altmint.com/how-to-check-link-popularity-or-back-links-for-a-domain-in-php</link>
		<comments>http://blog.altmint.com/how-to-check-link-popularity-or-back-links-for-a-domain-in-php#comments</comments>
		<pubDate>Tue, 20 Apr 2010 10:06:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[back links]]></category>
		<category><![CDATA[back links in google]]></category>
		<category><![CDATA[back links in yahoo]]></category>
		<category><![CDATA[check back links script in php]]></category>
		<category><![CDATA[link popularity]]></category>
		<category><![CDATA[links popularity in yahoo and google]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=147</guid>
		<description><![CDATA[How to check Link popularity or back links for a given domain in php?
Link popularity is a measure of the quantity and quality of other web sites that link to a specific site on the World Wide Web. It is an example of the move by search engines towards off-the-page-criteria to determine quality content. In [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to check Link popularity or back links for a given domain in php?</strong></p>
<p><strong>Link popularity</strong> is a measure of the quantity and quality of other web sites that link to a specific site on the World Wide Web. It is an example of the move by search engines towards off-the-page-criteria to determine quality content. In theory, off-the-page-criteria adds the aspect of impartiality to search engine rankings. Link popularity plays an important role in the visibility of a web site among the top of the search results. Indeed, some search engines require at least one or more links coming to a web site, otherwise they will drop it from their index.</p>
<p>Search engines such as Google use a special link analysis system to rank web pages. Citations from other WWW authors help to define a site&#8217;s reputation. The philosophy of link popularity is that important sites will attract many links. Content-poor sites will have difficulty attracting any links. Link popularity assumes that not all incoming links are equal, as an inbound link from a major directory carries more weight than an inbound link from an obscure personal home page. In other words, the quality of incoming links counts more than sheer numbers of them.<sup id="cite_ref-Wiep.net_8-0"><a href="http://en.wikipedia.org/wiki/Link_popularity#cite_note-Wiep.net-8"></a></sup></p>
<p><span>We can know Link popularity in google and Yahoo for given domain name in PHP. </span></p>
<p><span>It can be achievd by some simple logic and here is that logic for you.</span></p>
<p><span>
<pre class="brush: php">&lt;/span&gt;

&lt;?php
// Setting the URL variable
$link = $_POST[&#039;url&#039;];

// Google Backlinks
function fetch_google($uri) {
$uri = trim(eregi_replace(&#039;http://&#039;, &#039;&#039;, $uri)); $uri = trim(eregi_replace(&#039;http&#039;, &#039;&#039;, $uri));
$url = &#039;http://www.google.com/search?hl=en&amp;amp;amp;lr=&amp;amp;amp;ie=UTF-8&amp;amp;amp;q=links:&#039;.$uri;
$v = file_get_contents($url);
preg_match(&#039;/of about \&lt;b\&gt;(.*?)\&lt;\/b\&gt;/si&#039;,$v,$r);
return ($r[1]) ? $r[1] : &#039;0&#039;;
}

// Yahoo Inlinks
function fetch_yahoo($uri) {
$uri = trim(eregi_replace(&#039;http://&#039;, &#039;&#039;, $uri)); $uri = trim(eregi_replace(&#039;http&#039;, &#039;&#039;, $uri));
$url = &#039;http://siteexplorer.search.yahoo.com/search?p=http://&#039;.$uri.&#039;&amp;amp;amp;bwm=i&amp;amp;amp;bwmf=s&amp;amp;amp;bwmo=&amp;amp;amp;fr2=seo-rd-se&#039;;
$v = file_get_contents($url);

preg_match(&#039;/Inlinks \((.*?)\)/si&#039;,$v,$r);
return ($r[1]) ? $r[1] : &#039;0&#039;;
}

// Alexa Rating
function fetch_alexa($uri){
$uri = trim(eregi_replace(&#039;http://&#039;, &#039;&#039;, $uri)); $uri = trim(eregi_replace(&#039;http&#039;, &#039;&#039;, $uri));
$url = &#039;http://data.alexa.com/data?cli=10&amp;amp;amp;dat=snbamz&amp;amp;amp;url=&#039; . urlencode($uri);
$v = file_get_contents($url);
preg_match(&#039;/\&lt;popularity url\=&quot;(.*?)&quot; TEXT\=&quot;([0-9]+)&quot;\/\&gt;/si&#039;, $v, $r);
return ($r[2]) ? $r[2] : &#039;0&#039;;
}

// Page Header
echo &quot;&lt;h2&gt;Search Engine Popularity&lt;/h2&gt;&quot;;

// Display Links and Information
if (isset($link)) {
echo &quot;&lt;strong&gt;URL:&lt;/strong&gt; &quot; . $link . &quot;&lt;br /&gt;&quot;;
echo &quot;&lt;strong&gt;Google Backlinks:&lt;/strong&gt; &quot; . fetch_google($link) . &quot;&lt;br /&gt;&quot;;
echo &quot;&lt;strong&gt;Yahoo Backlinks:&lt;/strong&gt; &quot; . fetch_yahoo($link) . &quot;&lt;br /&gt;&quot;;
echo &quot;&lt;strong&gt;Alexa Rating:&lt;/strong&gt; &quot; . fetch_alexa($link) . &quot;&lt;br /&gt;&quot;;
}

// Search Form
echo &quot;&lt;br /&gt;
&lt;form action=\&quot;&lt;?=$_SERVER[&#039;PHP_SELF&#039;];?&gt;\&quot; method=\&quot;POST\&quot;&gt;
&lt;input type=\&quot;text\&quot; name=\&quot;url\&quot; /&gt;
&lt;input type=\&quot;submit\&quot; /&gt;
&lt;/form&gt;&quot;;

?&gt;

&lt;span&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/how-to-check-link-popularity-or-back-links-for-a-domain-in-php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DNS propagation</title>
		<link>http://blog.altmint.com/dns-propagation</link>
		<comments>http://blog.altmint.com/dns-propagation#comments</comments>
		<pubDate>Mon, 19 Apr 2010 12:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[dns propagate]]></category>
		<category><![CDATA[dns propagation]]></category>
		<category><![CDATA[dns propagation check]]></category>
		<category><![CDATA[dns propagation checker]]></category>
		<category><![CDATA[how long does it take for dns to propagate]]></category>
		<category><![CDATA[how long for dns to propagate]]></category>
		<category><![CDATA[speed   up dns propagation]]></category>
		<category><![CDATA[What is DNS propagation]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=138</guid>
		<description><![CDATA[In this article we are going to discuss  what is the DNS propagation process, why is it and what we can do to speed up the process.]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: justify;"><span style="color: #008080;">What is DNS propagation.</span></h3>
<p style="text-align: justify;">When a new domain name is registered (or an existing one is transferred to a new DNS), the information must be updated in the entire ISP’s and root servers around the world. This updating process is called as DNS propagation.</p>
<h3 style="text-align: justify;"><span style="color: #008080;">DNS propagation time and Problems during the propagation.</span></h3>
<p style="text-align: justify;">Any time that DNS changes are made on any level, you will need to wait for the propagation to complete and this will usually takes 3-4 days (72-96 hours). During propagation, traffic may come to either location. One person may see the new server while the other person sees the old one. Also, your domain name may work and may not too. All of this is normal during propagation. This means that just because you go to the new site when you type in the domain name does not mean that propagation is complete.</p>
<h3 style="text-align: justify;"><span style="color: #008080;">Detailed explanation of propagation</span></h3>
<p style="text-align: justify;">DNS stands for Domain Name Service. Every time you go to a web site using a domain name, you are using DNS. Your request for that domain name goes to your local primary or secondary DNS server which is usually administered by your ISP. Your local DNS server check its records to see if it knows what IP address that domain points to. If it does, then it directs you to that IP address. If it does not, then it sends a query to the Root DNS servers.</p>
<p style="text-align: justify;">The Root servers are what make the process work. When a domain is registered, it is added to the Root servers. When a domain is expired, it is removed from the Root servers. The Root servers tell your local DNS server which DNS servers are the authorities for your domain.</p>
<p style="text-align: justify;">Your local DNS server then queries the authorities DNS server, and that server tells your local DNS server what IP address is the domain located. Your local DNS server then caches the information. This process is essential because it does not only does it speed up future queries but also reduces the load on the Root servers.</p>
<p style="text-align: justify;">This process leads to the propagation.<br />
Your local DNS server will not keep that information forever. It will be kept for a certain amount of time, at one point it deletes it. The next time, which is after the information is deleted when you try to visit that domain, the process will start all over again.</p>
<h3 style="text-align: justify;"><span style="color: #008080;">DNS Propagation Check</span></h3>
<p style="text-align: justify;">DNS Propagation will usually takes 3-4 days (72-96 hours).   There are a lot of tools available on the web to check DNS propagation. With the DNS propagation checkers you can verify that with a few DNS servers around the world.  Enter in a domain name and it will check what IP it is associated with through several ISP DNS caches.</p>
<p style="text-align: justify;">99% of the time this is completely useless, but if you have just moved a domain name this can be helpful to see how the propagation is going.</p>
<h3 style="text-align: justify;"><span style="color: #008080;">How to Speed up DNS Propagation</span></h3>
<p style="text-align: justify;">The well-known way to do this, is to lower your TTL values for a while before making a DNS change.  However, there are three big issues with this:</p>
<p style="text-align: justify;">1) sometimes you don&#8217;t know when you&#8217;ll be making such a change</p>
<p style="text-align: justify;">2) lots of ISPs set the DNS TTL to several days, and stubbornly refuse to make an exception for you, particularly because you generally ask them when you are leaving as a customer.</p>
<p style="text-align: justify;">3) Various client programs and DNS client modules do their own caching, and do not process DNS TLL anywhere near correctly.</p>
<p style="text-align: justify;">I have now concluded that to be completely safe (i.e., no person or search engine will think your site is missing), you should allow a week overlap &#8211; the server at the old IP address should continue to work for that duration.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/dns-propagation/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Private Domain Name Registration</title>
		<link>http://blog.altmint.com/private-domain-name-registration</link>
		<comments>http://blog.altmint.com/private-domain-name-registration#comments</comments>
		<pubDate>Fri, 16 Apr 2010 11:08:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[domain name private registration]]></category>
		<category><![CDATA[domain private registration]]></category>
		<category><![CDATA[private domain name registration]]></category>
		<category><![CDATA[private domain registration]]></category>
		<category><![CDATA[private domain registrations]]></category>
		<category><![CDATA[private registration domain names]]></category>
		<category><![CDATA[private registration for domain]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=134</guid>
		<description><![CDATA[Private domain registration - what is Private domain registration and how to do it.]]></description>
			<content:encoded><![CDATA[<h2>Private Domain Name Registration</h2>
<p>A private domain registration will keep your personal information (name, email address, etc.) out of the global Internet database, and will prevent a lot of spam from reaching your email box.  You have the option of getting a private domain registration with every domain you register.</p>
<p>ICANN, the governing body of domain names requires every registrar to maintain a publicly accessible WHOIS directory for all domains that are registered.  This means your personal information is made available to anyone who wants to see it.</p>
<p>With a private domain registration, you can keep your personal information private via a new and unique process that is supported by two patent applications.</p>
<p>With a private domain registration, domain company name, address and phone number are made publicly available in the WHOIS directory &#8212; not yours.</p>
<h2>Litigation</h2>
<p>With &#8220;private registration&#8221;, the private registration service is the legal owner of the domain. This has occasionally resulted in legal problems.</p>
<p>In a trademark infringement case, a 2009 United States District Court ruling in U.S.A. held that, for domains with &#8220;private registration&#8221;, the privacy service is legally the &#8220;owner&#8221; of the domain. The privacy service acts as the &#8220;cyber-landlord of the Internet real estate&#8221;, and the domain is &#8220;licensed&#8221; to the customer of the privacy service.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/private-domain-name-registration/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Registering a domain name</title>
		<link>http://blog.altmint.com/registering-a-domain-name</link>
		<comments>http://blog.altmint.com/registering-a-domain-name#comments</comments>
		<pubDate>Fri, 16 Apr 2010 10:02:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[cheap domain registration]]></category>
		<category><![CDATA[domain name registrations]]></category>
		<category><![CDATA[domain names registration]]></category>
		<category><![CDATA[domain registering]]></category>
		<category><![CDATA[domain registration]]></category>
		<category><![CDATA[how to register a domain name]]></category>
		<category><![CDATA[how to register domain name]]></category>
		<category><![CDATA[how to register domain names]]></category>
		<category><![CDATA[internet domain name registration]]></category>
		<category><![CDATA[internet domain registration]]></category>
		<category><![CDATA[low cost domain name registration]]></category>
		<category><![CDATA[register a domain name]]></category>
		<category><![CDATA[register domain name]]></category>
		<category><![CDATA[register domain names]]></category>
		<category><![CDATA[register domains]]></category>
		<category><![CDATA[register your domain name]]></category>
		<category><![CDATA[registering a domain]]></category>
		<category><![CDATA[registering a domain name]]></category>
		<category><![CDATA[registering a domain name in]]></category>
		<category><![CDATA[registering a new domain name]]></category>
		<category><![CDATA[registering domain name]]></category>
		<category><![CDATA[registering domain names]]></category>
		<category><![CDATA[registering domains]]></category>
		<category><![CDATA[registering for a domain name]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=130</guid>
		<description><![CDATA[How to register a domain name -  Registering a domain name is one of the first steps in establishing a web site.]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: justify;">Registering a domain name</h2>
<p style="text-align: justify;">Registering a domain name is one of the first steps in establishing a web site. The domain name identifies your website on the Internet.</p>
<p style="text-align: justify;">There are three steps involved in registering a domain name:</p>
<p style="text-align: justify;">Choosing the domain name<br />
Checking if the domain name available<br />
Registering the domain name</p>
<p style="text-align: justify;"><strong>Choosing the domain name</strong></p>
<ol style="text-align: justify;">
<li>Don&#8217;t register domain names that are too long. You can register names up to 63 characters long, but that doesn&#8217;t mean you have to use all 63 characters.</li>
<li>Include keywords in the name- A keyword is a word that will be used by people searching the net.  I highly recommend you register a name that contains your major keywords instead of your company name. If it has already been taken the consider using it in a combination separated by hyphens, because all search engines treat the hyphens as spaces</li>
<li>Consider registering a generic name, if one that makes sense for your organization is still available.</li>
<li>Try to choose a name that has positive connotations in all languages.</li>
</ol>
<p style="text-align: justify;"><strong>Checking if the domain name available</strong></p>
<p style="text-align: justify;">To register a domain name, it is simply a matter of performing a domain name &#8216;look up&#8217; to find a name that isn&#8217;t already taken (since all domain names must be unique).</p>
<p style="text-align: justify;"><strong>Registering the domain name</strong></p>
<p style="text-align: justify;">There are many domain registration companies available. It doesn&#8217;t matter where you register your domain.  Every registrar provides the same services.</p>
<p>Here I am listing some affordable / cheap domain registration companies.</p>
<p><a title="GoDaddy.com - World's No.1 Domain  Name Registrar " href="http://affiliate.godaddy.com/redirect/D05276D3C783B1782263CDF3B76276DD6CD06F760D55AB0D5A8C7B930EC77CC5">GoDaddy.com &#8211; World&#8217;s No.1 Domain Name Registrar </a></p>
<p><a href="http://www.ixwebhosting.com/templates/ix/v2/affiliate/clickthru.cgi?id=chandrarv"> IX Web Hosting </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/registering-a-domain-name/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top Level Domains</title>
		<link>http://blog.altmint.com/top-level-domains</link>
		<comments>http://blog.altmint.com/top-level-domains#comments</comments>
		<pubDate>Tue, 13 Apr 2010 12:10:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[country top level domains]]></category>
		<category><![CDATA[icann top level domains]]></category>
		<category><![CDATA[top level country domains]]></category>
		<category><![CDATA[top level domain]]></category>
		<category><![CDATA[top level domain names]]></category>
		<category><![CDATA[top level domains]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=117</guid>
		<description><![CDATA[A domain name "extension" is called a "top-level domain (TLD)." These are divided into three different categories: generic top-level domains (gTLD), country code top-level domains (ccTLD) and infrastructure top-level domains.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Top-Level Domains</strong></p>
<p style="text-align: justify;">A domain name &#8220;extension&#8221; is called a &#8220;top-level domain (TLD).&#8221; These are divided into three different categories: generic top-level domains (gTLD), country code top-level domains (ccTLD) and infrastructure top-level domains.</p>
<p style="text-align: justify;">Generic top-level domains are the ones most frequently seen on the Web:</p>
<ul style="text-align: justify;">
<li>.com (originally intended for      use by commercial organizations but is available to anyone).</li>
<li>.net (originally intended for      use by sites directly related to the internet  but is      available to anyone).</li>
<li>.org (originally intended for      use by non-profit organizations but is available to anyone).</li>
<li>.edu (used by educational      organizations).</li>
<li>.gov (reserved for agencies      of the United States      government).</li>
<li>.mil (reserved for the United States      military).</li>
<li>.int (reserved for      international organizations established by treaty. i.e. the European      Union: http://europa.eu.<em>int</em>).</li>
<li>.aero (reserved for members      of the air transport industry).</li>
<li>.biz (for use by businesses      only).</li>
<li>.coop (reserved for      cooperative associations).</li>
<li>.info.</li>
<li>.museum (reserved for museums).</li>
<li>.name (reserved for      individuals).</li>
<li>.pro (being developed for      professionals and related entities).</li>
</ul>
<p style="text-align: justify;">
<p style="text-align: justify;">The next top-level domains are the two letter country codes. These are used to designate a country or a dependent territory. For instance, in the URL http://bsnl.in/, the &#8220;in&#8221; represents the India. A listing of all country codes can be found on the <a href="http://www.iana.org/cctld/cctld-whois.htm">IANA Web site</a>. IANA (<a href="http://www.iana.org/">Internet Assigned Numbers Authority</a>) oversees the allocation of all TLD&#8217;s.</p>
<p style="text-align: justify;">The top-level domain infrastructure is limited to &#8220;.arpa&#8221; and is used exclusively for Internet-infrastructure purposes. The .arpa designation comes from the United States Department of Defense <strong>A</strong>dvanced <strong>R</strong>esearch <strong>P</strong>rojects <strong>A</strong>gency, the government agency which formulated the Internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/top-level-domains/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is a Domain Name?</title>
		<link>http://blog.altmint.com/what-is-a-domain-name</link>
		<comments>http://blog.altmint.com/what-is-a-domain-name#comments</comments>
		<pubDate>Tue, 13 Apr 2010 09:36:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[about the domain name]]></category>
		<category><![CDATA[Domain Name]]></category>
		<category><![CDATA[domain name definition]]></category>
		<category><![CDATA[What is a Domain Name?]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=110</guid>
		<description><![CDATA[This page describes the term domain name and more information about the domain name]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: justify;">What is a Domain Name?</h2>
<p style="text-align: justify;">Internet domain names are the alphanumeric identifiers we use to refer to hosts on the Internet. Such as Altmint.com or yourquidget.com</p>
<p style="text-align: justify;">These are all domain names which are registered by official registrars with various domain name authorities. These authorities make up part of an international database or &#8220;domain name system&#8221; overseen by the Internet Corporation for Assigned Names and Numbers <a title="(External link - Opens in a new  window.)" href="http://www.icann.org/" target="_blank">(ICANN)</a>.</p>
<p style="text-align: justify;"><strong> Domain naming system</strong></p>
<p style="text-align: justify;">Internet domain names are organized by their levels, with the higher levels on the right. For example, for the domain &#8220;www.altmint.com&#8221; the top-level domain is &#8220;com&#8221;, the second-level domain is &#8220;altmint.com&#8221;, and the third-level domain is &#8220;www.altmint.com&#8221;.</p>
<p style="text-align: justify;"><strong>Top-level domains</strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;">In the Domain Name System&#8230; there is a hierarchy of names. The root of system is unnamed. There are a set of what are called &#8220;top-level domain names&#8221; (TLDs). These are the generic TLDs (EDU, COM, NET, ORG, GOV, MIL, and INT), and the two letter country codes from ISO-3166.</p>
<p style="text-align: justify;"><strong>Second-level domains</strong></p>
<p style="text-align: justify;">Second-level domains are registered by individuals and organizations.  This is the actual name of your website.</p>
<p style="text-align: justify;">Domain names must be at least two characters long and no more than 63 characters maximum, excluding the top level domain. The characters can include any combination of letters, numbers or hyphens. The first and last character cannot be a hyphen. Domain names are not case-sensitive</p>
<p style="text-align: justify;"><strong>Third-level domains</strong></p>
<p style="text-align: justify;">Third-level Internet domain names i.e host names / sub domains are created by those that own second-level domains.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/what-is-a-domain-name/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a domain name&#8217;s IP address with PHP</title>
		<link>http://blog.altmint.com/get-a-domain-names-ip-address-with-php</link>
		<comments>http://blog.altmint.com/get-a-domain-names-ip-address-with-php#comments</comments>
		<pubDate>Fri, 09 Apr 2010 12:36:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[domain's Ip address]]></category>
		<category><![CDATA[Ip address]]></category>
		<category><![CDATA[IP Address using php]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=107</guid>
		<description><![CDATA[How to get Domain name&#8217;s IP address with PHP ?.
It&#8217;s very easy to get the IP address for a domain name using PHP. We have two powerful functions in php to get the IP address of a domain name.
Those functions are

 gethostbyname()
 gethostbynamel()

The first one will return  IP address corresponding to a given Internet host [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to get Domain name&#8217;s IP address with PHP ?.</strong></p>
<p>It&#8217;s very easy to get the IP address for a domain name using PHP. We have two powerful functions in php to get the IP address of a domain name.</p>
<p>Those functions are</p>
<ol>
<li> gethostbyname()</li>
<li> gethostbynamel()</li>
</ol>
<p>The first one will return  IP address corresponding to a given Internet host name</p>
<p>The second one will return a list of IP addresses corresponding to a given Internet host name in the form of an array.</p>
<p>We will see some examples using the both functions</p>
<p><strong>Using gethostbyname()</strong></p>
<p>The PHP function gethostbyname() is very simple to use. Simply pass it the domain name you would like to look up and it will either return the IP address for that domain or the unmodified domain back again if it failed. If the domain has more than one IP address associated with it (as with www.cnn.com) then just a single IP address will be passed back.</p>
<p><strong>Example 1</strong></p>
<pre class="brush: php">

&lt;?php

$x = gethostbyname(&#039;www.altmint.com&#039;);
var_dump($x);
// outputs string(13) &quot;96.0.1.231&quot;

?&gt;
</pre>
<p><strong>Example 2</strong></p>
<pre class="brush: php">

&lt;?php

$x = gethostbyname(&#039;www.cnn.com&#039;);
var_dump($x);
// string(14) &quot;157.166.255.19&quot;
// OR string(14) &quot;157.166.255.18&quot;
// OR string(14) &quot;157.166.224.26&quot;
// OR string(14) &quot;157.166.224.25&quot;

?&gt;
</pre>
<p><strong>Example 3</strong></p>
<p>This example is for a non-existant domain and returns the domain itself instead of an IP address:</p>
<pre class="brush: php">

&lt;?php
$x = gethostbyname(&#039;www.blah.foo&#039;);
var_dump($x);
// outputs string(12) &quot;www.blah.foo&quot;

?&gt;
</pre>
<p>If you needed to do something based on the IP address not being found, you could do something like this:</p>
<pre class="brush: php">

&lt;?php
$domain = &#039;www.blah.foo&#039;;
$ip = gethostbyname($domain);
if($domain != $ip) {
// do something
}

?&gt;
</pre>
<p>Note that not being able to find an IP address for the domain does not mean the domain does not exist, or even that a record does not exist for this (sub)domain. The DNS lookup may simply have failed.</p>
<p><strong>Using gethostbynamel()</strong></p>
<p>The PHP gethostbynamel() function returns a list of IP addresses for a domain and Take a look at the following Example.</p>
<p><strong>Example</strong></p>
<pre class="brush: php">

&lt;?php
$hosts = gethostbynamel(&#039;www.example.com&#039;);
print_r($hosts);

//Possible out put will be like this.

Array
(
[0] =&gt; 192.0.34.166
)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/get-a-domain-names-ip-address-with-php/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to Create a Website</title>
		<link>http://blog.altmint.com/how-to-create-a-website</link>
		<comments>http://blog.altmint.com/how-to-create-a-website#comments</comments>
		<pubDate>Fri, 09 Apr 2010 11:55:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[build your own website]]></category>
		<category><![CDATA[creating a website]]></category>
		<category><![CDATA[how do you make a website]]></category>
		<category><![CDATA[how to build a website]]></category>
		<category><![CDATA[how to build your own website]]></category>
		<category><![CDATA[how to create a website]]></category>
		<category><![CDATA[how to creating a website]]></category>
		<category><![CDATA[how to make a website]]></category>
		<category><![CDATA[how to make your own website]]></category>
		<category><![CDATA[make a website]]></category>
		<category><![CDATA[make my own website]]></category>
		<category><![CDATA[make own website]]></category>
		<category><![CDATA[make website]]></category>
		<category><![CDATA[make your website]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=105</guid>
		<description><![CDATA[This web page tell the beginners to how to create the web site and what are the steps involved in it.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Welcome! If you found this page, you are obviously ardent to know what is involved in making a website.  Let’s start from here.</p>
<p style="text-align: justify;">
<strong>What You Need to Start Your Website</strong></p>
<p style="text-align: justify;">
There are two things you absolutely must have to build a website:</p>
<p style="text-align: justify;">1) A domain name</p>
<p style="text-align: justify;">2) A web host</p>
<p style="text-align: justify;">Once you got these two things, then I can say you are ready to build your site.</p>
<p style="text-align: justify;"><strong>What is a domain name?</strong></p>
<p style="text-align: justify;">Before you even think about building your website, you should register a domain name. A domain name is the thing that looks like this: &#8220;yourdomain.com&#8221;.</p>
<p style="text-align: justify;">Your domain name represents the URL (or permanent web address) of your website. Therefore, when anyone types in &#8220;yourdomain.com&#8221; or &#8220;www.yourdomain.com&#8221;, they will see your website.</p>
<p style="text-align: justify;">You register your domain name through a domain name registrar. You register this on an annual basis.  Domain name can cost anywhere between $4 and $50 per year.</p>
<p style="text-align: justify;"><strong>Find a Web host</strong></p>
<p style="text-align: justify;">Once you got the domain name now it is the time to host the website.  Web hosting is a service which allocates space for your websites on computer servers that are connected to the Internet 24/7.</p>
<p style="text-align: justify;">You can host your website at your place or buy some plan from a web hosting company.</p>
<p style="text-align: justify;">A good hosting plan can be anywhere between $10 per month and many thousands per month.</p>
<p style="text-align: justify;"><strong>Build your Website</strong></p>
<p style="text-align: justify;">You can either build it yourself or use a web developer or firm to do that. Website building basically involves 2 steps: Making a web page and setting up a website.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/how-to-create-a-website/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Outsourcing Web design and development work</title>
		<link>http://blog.altmint.com/outsourcing-web-design-and-development-work</link>
		<comments>http://blog.altmint.com/outsourcing-web-design-and-development-work#comments</comments>
		<pubDate>Thu, 08 Apr 2010 09:51:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Altmint]]></category>
		<category><![CDATA[IT web development outsourcing]]></category>
		<category><![CDATA[outsourcing]]></category>
		<category><![CDATA[outsourcing India]]></category>
		<category><![CDATA[overseas]]></category>
		<category><![CDATA[pros and cons of outsourcing]]></category>
		<category><![CDATA[web design costs outsource]]></category>
		<category><![CDATA[web design outsourcing]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=98</guid>
		<description><![CDATA[Before you start outsourcing web design, you should consider pros and cons of outsourcing. Often outsourcing is a way to save money, but there can be unexpected issues.]]></description>
			<content:encoded><![CDATA[<h2>Common Outsourcing Concerns</h2>
<p style="text-align: justify;">Outsourcing is an arrangement in which one company provides services for  another company that could also be or usually have been provided  in-house. US companies are outsourcing their web development work to India because of the drastically lower rates and access to better technology.  Also by outsourcing the companies can concentrate on their core business.</p>
<p style="text-align: justify;">Here we are discussing  a few common outsourcing concerns.</p>
<p style="text-align: justify;"><strong>Time zone differences: </strong></p>
<p style="text-align: justify;">At 11AM here in the US its around 11PM in India. It’s not always easy to get someone on the phone. Often you have to wait 24 hours for a reply to your email.</p>
<p style="text-align: justify;">Some companies like ours are providing the support in US timings.</p>
<p style="text-align: justify;"><strong>Language:</strong></p>
<p style="text-align: justify;">While an overseas designer may be able to communicate verbally with passable English, the real problem is often the business concept and more abstract ideas. I have seen clients that were simply unable to communicate the concepts of their business with an overseas developer. I think it is more of a cultural difference than a simple language problem.</p>
<p style="text-align: justify;">We can overcome this problem by exactly written specification document.</p>
<p style="text-align: justify;"><strong>Missed Deadlines:</strong></p>
<p style="text-align: justify;">I have been approached by several clients who come to me and say. I hired a developer in India and it is been a long time and the site is still not working. Either the designer took another job or had some other issue that is keeping them from finishing your project. When you are only paying someone $6 an hour to do technical work, it&#8217;s very easy for them to find better pay or not make time for it.</p>
<p style="text-align: justify;">It is better to hire a firm to overcome this issue.</p>
<p style="text-align: justify;"><strong>Fraud: </strong></p>
<p style="text-align: justify;">I have heard some horror stories from clients who have paid deposits only to get a small portion of work done, and then the developer disappears! Luckily most designers overseas only charge once the work is delivered.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/outsourcing-web-design-and-development-work/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to know Mysql Version Using PHP</title>
		<link>http://blog.altmint.com/how-to-know-mysql-version-using-php</link>
		<comments>http://blog.altmint.com/how-to-know-mysql-version-using-php#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:11:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[know mysql version using php]]></category>
		<category><![CDATA[mysql vesion]]></category>

		<guid isPermaLink="false">http://blog.altmint.com/?p=86</guid>
		<description><![CDATA[How to know Mysql Version Using PHP ?.
We can know the mysql version in the phpinfo. But if we want to display the mysql version in any web page dynamically, how we are you going to deal with that ?.
A little bit logic and a liitle bit manipulation on the phpinfo information we can achieve [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to know Mysql Version Using PHP ?.</strong></p>
<p>We can know the mysql version in the phpinfo. But if we want to display the mysql version in any web page dynamically, how we are you going to deal with that ?.</p>
<p>A little bit logic and a liitle bit manipulation on the phpinfo information we can achieve that.</p>
<p>Create a file like this and name it as phpinfo.php</p>
<pre class="brush: php">
&lt;?php
phpinfo();
?&gt;
</pre>
<p>Create another file mysql_version.php with the following code</p>
<pre class="brush: php">
&lt;?php
$file = @file_get_contents(&quot;http://DOMAINNAME/phpinfo.php&quot;);
$start = explode(&quot;&lt;h2&gt;&lt;a name=\&quot;module_mysql\&quot;&gt;mysql&lt;/a&gt;&lt;/h2&gt;&quot;,$file,1000);
if(count($start) &lt; 2){
echo &quot;MySQL is not on this server.&quot;;
}else{
$again = explode(&quot;&lt;tr&gt;&lt;td class=\&quot;e\&quot;&gt;Client API version &lt;/td&gt;&lt;td class=\&quot;v\&quot;&gt;&quot;,$start[1],1000);
$last_time = explode(&quot; &lt;/td&gt;&lt;/tr&gt;&quot;,$again[1],1000);
echo &quot;MySQL Version: &lt;b&gt;&quot;.$last_time[0].&quot;&lt;/b&gt;&quot;;
}
?&gt;
</pre>
<p>replace &#8220;DOMAINNAME&#8221; with your domain name.</p>
<p>This is one of the solution.</p>
<p>You can also know the mysql version if you are using a linux  server and you have the permission to execute the shell commands, the following code will work.</p>
<pre class="brush: php">
&lt;?php
function find_SQL_Version() {
$output = shell_exec(&#039;mysql -V&#039;);
preg_match(&#039;@[0-9]+\.[0-9]+\.[0-9]+@&#039;, $output, $version);
return $version[0];
}
echo &#039;Your SQL version is &#039; . find_SQL_Version();
?&gt;
</pre>
<p>If any one know other than these methods please feel free to share with us.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.altmint.com/how-to-know-mysql-version-using-php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
