Twitter OAuth Status Update using PHP.


Twitter is the most powerful platform that you can express your thoughts with your followers. Few months back Twitter has been updated there OAuth APIs, this tutorial will explain three import systems like, login with Twitter, storing Twitter Oauth tokens into database and update Twitter status message with your own web application. This script helps you to share your web application updates with user Twitter status updates. Twitter OAuth Status Update using PHP.

Twitter OAuth Status Update using PHP.


Twitter is the most powerful platform that you can express your thoughts with your followers. Few months back Twitter has been updated there OAuth APIs, this tutorial will explain three import systems like, login with Twitter, storing Twitter Oauth tokens into database and update Twitter status message with your own web application. This script helps you to share your web application updates with user Twitter status updates.

Webydo’s New Pricing Plans Is Here



Webydo’s New Pricing Plans Is Here



Blogger Template Design

Hope you know 9lessons blog is power by google blogger platform and I am not paying any hosting changers from last 4 years. I strongly suggest blogger is the perfect platform for blogging (present your ideas), but you have to do few coding changes for better results. My first success was I did customized blogger template completely, so tak

seo
Search Engine Optimization is the most common term in the web industry, this system helps you to increase your websites organic traffic. Many are already discussed about topic, but I have been following few different ways for organic traffic. Take a look at the following steps I did shared all my blog SEO standards and implement these , sure you will improve your blog Google search results.

SEO for Blogging .

SEO for Blogging

Search Engine Optimization is the most common term in the web industry, this system helps you to increase your websites organic traffic. Many are already discussed about topic, but I have been following few different ways for organic traffic. Take a look at the following steps I did shared all my blog SEO standards and implement these , sure you will improve your blog Google search results.

SEO for Blogging .


HTML Tags
Standard blog HTML syntax, article title should be inside H1 tag. Read this for more help Blog Design with CSS and HTML
//Header Part
<head>
<title>Article Title</title>
<meta name="description" content="Article Description Here"/>
</head>

//Article Part
<div>
<span>Article Published Time</span> <span><a href="#">Article Author</a></span>
<h1>Article Title</h1>
<p>
Article Content
</p>
<img src="" alt="Image Description"/>
</div>


Schema.org Validation
Structured data validation introduced by Google, Bing and Yandex search engines, it supports a common set of schemas for structured markup data on websites.
<div itemscope itemtype="http://schema.org/Blog">

<span itemprop="dateCreated">Article Published Time</span> <span itemprop="author"><a href="#">Article Author</a></span>

<h1 itemprop="name">Article Title</h1>

<p itemprop="description">
Article Content
</p>
<img src="" alt="Image Description"/>>
</div>

Google Plus Author
Modify with your Google Plus profile ID.
<a href="https://plus.google.com/xxxxxxxxxxxxx?rel=author" itemprop="author" rel="author me">Your Name</a>

Google Webmaster Tools and Data Highlighter
It is a Google search product, this allows webmasters to analyze search indexing status of their websites. Click here create an account and add your website.

Step 1
Go to Crawl -> Sitemaps submit your website sitemap.xml read this for more help.
SEO for Blogging .

9lessons.info is powered by blogger platform, so I just added atom.xml
SEO for Blogging .

Step 2
Few days back Google has introduced Web Data Highlighter, using this tool you can specify your website structure. Go to Search Appearance -> Data Highlighter -> Start Highlighting submit any of your blog url and select Articles as a type of information to highlight.
SEO for Blogging .

Select the article title and right click map to Title.
SEO for Blogging .

Choose published data.
SEO for Blogging .

Categories or Tags.
SEO for Blogging .

Article author
SEO for Blogging .

Finally Google data highlighter will crawl all these details.
SEO for Blogging .

Google Analytics
Create a Google Analytics account click here, add your website and generate Universal Analytics tracking code or modify the following code replace with UA code(Your Website ID). Include this code above the end tag.
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-XXXXX-X', 'Website Name');
  ga('send', 'pageview');
</script>

Google Event Tracking
This helps you to measure how users interact with the content of your website or blog. I had implemented this for blog menu.
<a href="url" onclick="ga('send', 'event', 'button', 'click','lable');" >
Link
</a>

Facebook Style Friend Request System Database Design.

I received few tutorial requests from my readers that asked to me, how to design Facebook style friend request system using MySQL. I had posted few tutorials about twitter style friend follow and follower concept designs, Facebook friend system is involved with few pending steps such as sending a request and accepting a request. Here I have discussed how to design a database and implementation of SQL queries, hope this post will help you to understand the friend system.