Currently Browsing: Website Creation
Moving Background with CSS
Sometimes you can think it’s impossible to create moving background only using CSS. But with a little touch of JavaScript can makes it happen. Here is an example where background is stunningly moving. HTML: <div id=”background”><a href=”/” id=”Logo”></a> <div...
CSS3 Buttons
There is some sort of buttons used since CSS is recognized as separate mark-up method by W3C. Using images is a great way to create cool buttons. But is a matter of fact that is makes web pages heavy to load. In CSS3 its possible makes such a stunning button with simple mark ups. Here are...
JQuery Face Detection
Face detection is a useful web application you see around in many photo storage solutions or in social sites. This plug-in is written in JQuery framework. It’s easy to integrate. You have to just instantiate the code and it will start work. In index.htm $(function() { $(‘#try’).click(function()...
PHP File Uploader
It is a common issue to use file uploader in developing web sites. Administrators may need to upload files to their server. It’s also considerable to allow user to post their sharing on social networking sites.  PHP has its own functions to upload and control your files in order. This script might...
MySQL Backup with PHP
Database is the most important part of a dynamic site. Most of the sites in the world use databases for storing their records, user logins, data, tables and other stuffs. It’s normal to set backup for security reason. There is an option in cpanel for storing databases. But most of the large enterprise...
jQuery Plug-in Development
  jQuery is a JavaScript library used for developing animated and eye-catching visual effects. Here is jQuery plug-in snippet for a non-touchable object.   Include jQuery library and Plug-in in the head element of your file. Insert object as a JavaScript class in <div> section.   <html><head> <script...
Creatin ZIP Archives With PHP
Creating .ZIP archives using PHP could be just easy as creating those on your desktop. PHP Zip libraries provide all the functionalities you need.   In order to create, write, read and delete .ZIP archives you need to ext/zip enabled PHP version. On UNIX, it could be accomplished by adding the –enable-zip...
Website Loading Time Optimization
Google mod_pagespeed includes several adjustments to the Apache configuration to speed up loading of Web pages. Google touted this optimization for some time as part of its Page Speed initiative. The Apache module is under an open source license and is thus free for everyone to use. Each has its own...
Create PHP Classes With Dynamic Functions
It is possible to generate PHP classes with dynamic functions. You can generate all the class attributes from the constructor and still able to access them after class is instantiated. When dealing with classes that have a large number of attributes select all columns in database and create class properties...
Creating HTML table from MySQL database with PHP
Sometimes there may be need to show SQL database in page as HTML table. With PHP it can be done easily. Here is the code what exactly you need to go. CSS table formation: table.db-table  { border-right:2px solid #ccc; border-bottom:2px solid #ccc; }table.db-table th  { background:#eee; padding:5px;...
Page 1 of 3123