Website is An Important Tool

Websites can be one of the major aspects behind huge earning but you need to make sure that you have implemented right strategies in order to build up a quality website. You can utilize website design service on web for this perspective. There are many service providing companies working on the web which can help you out to make brilliant website designs for your site. Making a great website with essential SEO methods can help you to get desired results without any complications. You can easily acquire and identify all of your targets to get better response. You have to improve ranking of your page as well in order to increase the reputation of your page on web. Your website listings can easily improve if you have selected the perfect service provider who can help you to make a great website which can also be held liable for great earnings. Read more »

Adding Effects to an Image on hover using CSS

 

Image Hover Effect

There will be time when you want to change the property of an image by just hovering over it . It is usually done to give an extra attractive effect to an image when someone hovers the mouse  over it. This can be done in various ways Read more »

Preventing MySql Injection:A Short Note

 

I was busy in designing a Content Management System with my friend Fazle for last couple of weeks.So, I could not make any post. And it is quite funny that I am writing this post from a cyber cafe. I am going to my village and my brother will be late. So, I have 1 hour time with me. As I can’t make any post for next 4-5 days, I am not going to waste this one hour. So, this post is about preventing MySql injection with PHP’s native function. This is just a random tutorial. Once I come back I will again start from where I left in PHP.

So, what is SQL injection?You might have heard this so called dangerous name in many seminars or lectures. But if you still don’t understand it I am here to guide you.

Read more »

Advanced Rounded Corners With CSS3

Rounded corners are perhaps the most talked about features of the CSS3. It removes the complexities which one gets by adding images at the corners or using multiple division feature. CSS3 Corners have got a further upgrade and are now more flexible to use then ever.

Below are some of the shapes which can be achieved very easily in CSS3.

shapes Read more »

Building Responsive Web Applications With jQuery:The Basics

jQuery is a javascript functions library. It can be linked to different webpages and simplifies javascript programming to a great extent. To link jQuery to pages:
Code:

<head><script type="text/javascript" language="javascript" src="jQuery.js"></script></head>

Download the latest Version of jQuery in the Official Website.

Read more »

Making AJAX call With XMLHttpRequest

Well, I just came from class a little bit earlier. So, decided to post the next tutorial on AJAX. In the previous post we talked about what really AJAX is! If you have not read it yet click here to view the post. In the tutorial we will learn how to make AJAX call from scratch. I assume you know a little about javascript. So, here we go. Read more »

Add multiple backgrounds to single Division with CSS3

The all new CSS3 will let you give multiple images in a single division. All you need to is specify the urls of the images in the “background-images” property separated with a comma (,). Isn’t that damn easy? Read more »

Call PHP Asynchronously And Design Powerful Web Applications With AJAX

Well, this is going to be the first post in AJAX section. I am writing this post, simply because I prefer combining AJAX with PHP in most of the cases while developing web applications. In this post I assume that you have a little bit knowledge about PHP and how to output statements using PHP. Read more »

The Basic Structure And Syntax

This is the first PHP script you are going to make. So, open up your C drive and go to Wamp folder.Inside that you will find another folder called “WWW”.We will save each and every PHP file in that folder.

So, Open up your favourite text editor and make a file “welcome.php”. YES, .php is the extension for PHP files.It is going to be saved inside the folder “WWW”. Now, let us write something in that file. Read more »

What is PHP?

PHP stands for PHP : Hypertext Preprocessor. In 1994 Rasmus Lerdorf started developing PHP. At that time PHP was called Personal Homepage Tools and was basically a collection of Perl scripts. But it lacked many useful features of a stable programming language such as loops. Read more »