Latest Trends of SEO (Search Engine Optimization) : Make Your Website Popular in Search Engines

Search Engine Optimization

Search Engine Optimization (For Google, Yahoo…)

One of the biggest challenges that online businesses face today is maintaining relevance in the eyes of the search engines, especially Google. With Google controlling more than 90% of the search traffic in the US alone, it’s not surprising that the most important goal of any web-based marketing strategy is to be number one in Google.

It’s a well-established principle that on-site SEO is one of the most basic building blocks every business needs …


Create Secure Forms in PHP Using MD5 Hashing and Salt Encription (Basic Security)

This tutorial shows the principle of using a salt in order to secure your password hashes. It’s written with my scripting-language of choice which is PHP, but the principle is the same with whatever server-language you might be using. Before going on, i’ll explain some facts that might be good to know before reading the article.

Brute force
Brute force is a comparison technique which goes trough all possible characters and in this case runs trough an algorithm to compare …


Things to Remember: Developing a High-Traffic, Real-Time Web App

While interacting with social media and other consumer websites has become routine for many of us, ensuring a seamless, positive user experience is still the Holy Grail for web developers. The volume of queries and messaging on websites increases every day, as does the challenge of keeping the underlying infrastructure running smoothly for millions of users.

Below, I’ll highlight key challenges facing web developers of high volume sites, provide examples of how to address these hurdles, and discuss the role …


Free SMS Gateway / API (Send SMS From your Website)

I have been contacted many times by the clients and friends how to send SMS from websites. Technically speaking they all were looking for SMS Gateway Solution in India. Although many companies claim that they have the solution. But from my study I have found that they do not full fill the exact requirements as they claim (In some of the cases ANY requirement). Nevertheless I have written following article to share my research.

Do you want to know …


Photoshop CS5 Paradise

I had been contacted many times by the clients and fiends to optimize the photos for them. What I have learned after 10 years of designing is Photoshop is the best tool a designer can have. Recently I have found some very useful tips for improving the quality of the photograph. I hope you like it and it will be of some use :) .

Naturally Increased Light

The light of the sun creates texture. There are shadowy areas and spots …


Creating User Login Page (PHP and MySQL)

Prerequsites:

XAMPP Installed

Local Database Named: phpmysimplelogin

Table : user with two fields (varchar) 1. username 2. password

Let’s Rock

Create folder ‘phpmysimplelogin’ in your XAMPP’s htdocs. So, it will be ‘C:\xampp\htdocs\phpmysimplelogin’.
Remember to save all of your files you will create, inside this folder.

Run your favorite PHP code editor, e.g: PHP Expert Editor, RapidPHP, etc; or just Microsoft Notepad is fine.

Save document below with name ‘config.inc’.

<?php

$hostname = ‘localhost’;        // Your MySQL hostname. Usualy named as …


Creating PHP Sessions

PHP Sessions – Why Use Them?

As a website becomes more sophisticated, so must the code that backs it. When you get to a stage where your website need to pass along user data from one page to another, it might be time to start thinking about using PHP sessions.

A normal HTML website will not pass data from one page to another. In other words, all information is forgotten when a new page is loaded. This makes it quite …


Latest Designing Tips

We have theories about everything: why the sky is blue, why apples fall, why bees buzz (and do other unmentionable things), why my boss said a certain thing, why that girl in the restaurant looked at me, why didn’t that girl in the restaurant look at me…. We’re wired to theorize. Theories make us feel secure. We can wrap our heads around them and explain them with little diagrams on whiteboards, or with equations, or even graphs. We give theories …


Exporting and Importing WordPress (Moving WordPress to / from Webhost)

Assume you are done with the local WordPress development, it is time to learn how to export and import WordPress. Then you can keep the local version for backup purpose and future development (ie. testing new themes, plugins, and upgrades).

1. Export Local Database

Login to your local phpMyAdmin, select the database from the dropdown. Click on the Export tab:

  • Under the Export field, make sure all tables are selected
  • Under the Structure field, tick “Add DROP TABLE / DROP

A Short Guide To Open-Source And Similar Licenses

I have been thinking from a long time to write over the open source and other similar licenses but did not get enough time. I recently found some useful information about the topic and finally decided to write and share it on my blog.

Many developers and designers want to release their work into the world as open-source projects. They want others to be able to build on and share their code. The open-source community is vibrant because of this. …