Zend Anwar

Full stack web developer

Author: zendnwar

What is Off-Site SEO?

Off-site search engine optimization is a major focus for all good SEO consultants in the modern search engine marketplace. The main two areas of off site optimization are links into your website and the surrounding search space from your online competitors. You can make off-site optimization work without any on-site optimization, but the results are […]

Read More

What is OnSite SEO ?

If anyone wants to a website first page of Google Search, then the first you have to do is to make your website SEO friendly. SEO is the acronym for Search Engine Optimization. Website onsite SEO optimization is an essential component of online success – website will not rank high unless it “speaks the same […]

Read More

How do I remove the Babylon search engine from my Firefox browser?

How do I remove the Babylon search engine from my Firefox browser? Very simple step to remove Babylon  Search from browser. Please write “about:config” into the browser. You will get this below view.     3. Click on “I’ll careful, I promise!”     4. Find out Search.babylon.com     5. Right button click you will get modify […]

Read More

SEO Tips and Tricks

Domain  Names: Domain is the most important for SEO(search engine optimization). If search keyword may domain name. easy way to get Traffic or search result on first page.For example you select a domain name like www.toursandtravel.info if any one search with keyword like “tours and travel info” easily search engine will get ur domain. Ultimately […]

Read More

Magento xampp Error: PHP Extension “curl” must be loaded.

On “xampp” you will Have following file to edit: C:\xampp\phpp\hp.ini Open the files one at a time Press Ctrl + F And search\Find “extension=php_curl.dll”, You will See    “;extension=php_curl.dll” all you have to do is remove ” ; ” from  files Make them: extension=php_curl.dll And Restart The Xampp Server. Now Curl Support will be on. […]

Read More

How to declear a table name in zend farmework

class Model_DbTable_User extends Zend_Db_Table_Abstract { protected $_name;// = ‘users ‘; public function init() { $this->_name = ‘users’; } } …………………………………………………………………………………………………………. Model_DbTable_User => model/DbTable/user.php protected $_name => Initialize to variable $this->_name = ‘users’ => Initialize to users Table.

Read More

Jquery Second Step

<!doctype html> <html> <head> <meta charset=utf-8> <title>Second Step of Jquery</title> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js”></script> <style> .second_step { font-weight: bold; color: green; font-size: 24px;} </style> <script> $(document).ready(function() { $(‘li:first-child’).addClass(‘second_step’); }); </script> </head> <body> <ul> <li>Item-1</li> <li>Item-2</li> <li>Item-3</li> </ul> </body> </html> …………………………………………………………………………………………………………………………………………………………………… <title>Second Step of Jquery</title>  // just title message. <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js”></script>  // U can download ur jquery version […]

Read More

Jquery Basic Introduction

An open source JavaScript library that simplifies the interaction between HTML and JavaScript Created by John Resig in 2005, released in January of 2006. jQuery is a lightweight “write less, do more” JavaScript library. The jQuery library contains the following features: HTML element selections HTML element manipulation CSS manipulation HTML event functions JavaScript Effects and […]

Read More

Jquery Tutorial First Step

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <title>First Step of Jquery</title> <style> ul li { color: black; font-weight: bold; font-size: 18px; font-family: Verdana; } .first { color: green; } </style> </head> <body> <ul> <li>Item-1</li> <li>Item-2</li> <li>Item-3</li> </ul> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js”></script> <script> $(‘ul li’).addClass(‘first’); </script> </body> </html>

Read More

Search engine optimization (SEO)

Search engine optimization (SEO) is the process of improving the visibility of a website or a web page in search engines. A site appears in the search results list, the more visitors it will receive from the search engine’s users. SEO may target different kinds of search, including image search, local search, video search, academic […]

Read More