seo

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jamhussain
Forum Newbie
Posts: 17
Joined: Sat Apr 07, 2012 2:04 am

seo

Post by jamhussain »

please guide me that I want to write code for SEO.
How should we start it.
what is code for exchange of links.
what is code for adding of links.
How can we check the Rank of website.
please guide me . I m new in php.
thanks.
User avatar
jayson.ph
Forum Contributor
Posts: 165
Joined: Mon Jan 02, 2012 9:20 am
Location: MP
Contact:

Re: seo

Post by jayson.ph »

you main <?

Code: Select all

<form method="post" action="<?$_SERVER['PHP_SELF'];?>">
<p><b>Domain/Host Name:</b> <input type="text" name="sitehost" size='30' maxlength='50' value="<?=$sitehost;?>"> <input type="submit" value="Grab Details"></p>
</form>
<ul>
<li>Google indexed pages: <?=getGooglePages($sitehost);?></li>
<li>Google inbound links: <?=getGoogleLinks($sitehost);?></li>
<li>Yahoo indexed pages: <?=getYahooPages($sitehost);?></li>
<li>Yahoo inbound links: <?=getYahooLinks($sitehost);?></li>
<li>Bing indexed pages: <?=getBingPages($sitehost);?></li>
<li>Bing inbound links: <?=getBingLinks($sitehost);?></li>
<li>Alexa Rank: <?=getAlexaRank($sitedomain);?></li>
<li>Alexa inbound links: <?=getAlexaLinks($sitedomain);?></li>
<li>DMOZ listing: <?=getDMOZListings($sitedomain);?></li>
<li>SiteAdvisor rating: <?=getSiteAdvisorRating($sitedomain);?></li>
<li>WOT rating: <?=getWOTRating($sitedomain);?></li>
<li>Domain age: <?=getDomainAge($sitedomain);?></li>
>
User avatar
social_experiment
DevNet Master
Posts: 2793
Joined: Sun Feb 15, 2009 11:08 am
Location: .za

Re: seo

Post by social_experiment »

jamhussain wrote:please guide me that I want to write code for SEO.
Use a search engine and search for 'SEO', it will bring up various resources you can use, tips and information. http://tinyurl.com/c5bgtop
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
Post Reply