Export database file in PHPMYADMIN: 1) Go to phpmyadmin -> click on database -> there we have button called “export”. 2) When we click on that button, we got a screen like in which format do want to export from database ( Like .sql,.txt,.zip,.zar or just open it that browser) 3) When we click on [ Read More ]
This post explains how to get the current page url using simple php code. Check the below function will generate the current page URL. function currentPageURL() { $curpageURL = "http"; if ($_SERVER["HTTPS"] == "on") {$curpageURL.= "s";} $curpageURL.= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $curpageURL.= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $curpageURL.= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $curpageURL; } [ Read More ]
The following php code will generate the tiny urls . <?php function getTinyUrl($url) { $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url={$url}"); return $tinyurl; } $url="http://www.anil2u.info"; echo getTinyUrl($url); // gives the output is http://tinyurl.com/lj4noe ?> This will be useful when we are trying to post our url in different blog. If we want more impressions without knowing [ Read More ]
Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, ISO 8859-1 Latin alphabet No. 1 Browser support: All browsers ASCII HTML HTML Dec Hex Symbol Number Name Description 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 20 21 22 23 24 25 26 27 28 29 [ Read More ]
Introducing a new jQuery notification plugin, it helps better and enrich message notification system for your web application. This plugin contains four types of notification systems such as Success, Error, Warning and Information with rich user interface. Very easy to implement just follow the steps. The Basic Setup 1. Include the jQuery and notification libraries [ Read More ]
Color Name Color Code aliceblue antiquewhite antiquewhite1 antiquewhite2 antiquewhite3 antiquewhite4 aquamarine aquamarine1 aquamarine2 aquamarine3 aquamarine4 azure azure1 azure2 azure3 azure4 Barely Blushing beige bisque bisque1 bisque2 bisque3 bisque4 black blanchedalmond blue blue1 blue2 blue3 blue4 blueviolet brown brown1 brown2 brown3 brown4 burlywood burlywood1 burlywood2 burlywood3 burlywood4 cadetblue cadetblue1 cadetblue2 cadetblue3 cadetblue4 Carmel Tan chartreuse chartreuse1 [ Read More ]
Previous series I had discussed about jQuery effects. Now time to talk about custom animation with jQuery using animate(). This is very interesting using this we can make beautiful web projects. Custom Animation with animate() $(selector).animate() While clicking the anchor link class=’animate’ it’s calling the class arrow adding animation effect.Take a look at live demo [ Read More ]
Last series discussed about jquery installation and introduction. In this post I want to explain about animation Effects and Attributes. Effects Fading Out and In : $(selector).fadeOut() and $(selector).fadeIn() Sliding Up and Down : $(selector).slideUp() and $(selector).slideDown() Sliding Toggle : $(selector).slideToggle() Custom animation effect : $(selector).animate() // I will discuss this in upcoming post. Fading [ Read More ]
FoxTab PDF Converter is a free tool that lets you create and convert any file to PDF. The most stable and comprehensive PDF converter available and is very easy to use. Description: FoxTab PDF Converter easily creates PDFs from any Windows program. this tool enables you to create PDF documents from almost any application (Word, [ Read More ]
The Morning After was created based on a brief survey on the WordPress forums which asked people what they would want to see in a unique magazine-style theme…and the people have spoken. Features Clean grid-based design Detailed documentation regarding installation, usage and customisation Support for WordPress widgets Three-column home page Featured post highlighting Associating images/thumbnails [ Read More ]









