mouse over help - Community for Webmasters & Developers
The best onmouseover/onmouseout help section for popup windows & div using css are available here.... refer this....
PHP, MySQL, Joomla, Wordpress and other CMSes as well as CSS, jScript, jQuery related tested & trusted references links will be posted here for every PHP enthusiasts references. Enjoy
Search This Blog
Wednesday, October 15, 2008
Sunday, October 12, 2008
Source for "IMDB - Sort by Rating" – Userscripts.org
Source for "IMDB - Sort by Rating" – Userscripts.org
DATA UPDATING FROM IMDB TO THE WEBSITE USING CODES.. .JUST CHECKTHIS OUT...
DATA UPDATING FROM IMDB TO THE WEBSITE USING CODES.. .JUST CHECKTHIS OUT...
Saturday, October 11, 2008
PHP Login System with Admin Features | evolt.org
PHP Login System with Admin Features | evolt.org
The best login script example with banned users,active users, active guests etc... refer this for best script
The best login script example with banned users,active users, active guests etc... refer this for best script
Thursday, October 2, 2008
Donutey | Guides | How to Add Google Translation to Your Website or Blog Using PHP | Automatic machine translation
Donutey | Guides | How to Add Google Translation to Your Website or Blog Using PHP | Automatic machine translation
add google translation tool to your website --> just in case ppl get into and can't read english and see thier lang... helpfull isn't it?? yep.. check this...
add google translation tool to your website --> just in case ppl get into and can't read english and see thier lang... helpfull isn't it?? yep.. check this...
VIRTUAL POONA: May 2007
VIRTUAL POONA: May 2007
All The way Fun...
All The way Fun...
- with evolution of windows
- Worst-n-Funny 10 Web Domain Names like -- the-rapist-finder.com etc...
- many more from Pune with love
[Tutorial] create and read XML files with Flash - mediengestalter.info
[Tutorial] create and read XML files with Flash - mediengestalter.info
Flash - XML + PHP + MySQL --- > explained with authority and humbly... fantastic... referre this...
Flash - XML + PHP + MySQL --- > explained with authority and humbly... fantastic... referre this...
Friday, September 19, 2008
Writing user-defined functions in PHP
Writing user-defined functions in PHP
Anatomy of a function
Writing your own functions is as simple as using the function command like this:
function somefunction() { [php code] }
The command function is followed by the unique name of your function (in this case somefunction). Next comes the parentheses, which may contain variable names, and the actual function code itself, enclosed in curly braces.
Here's a basic example:
function helloworld() { print("Hello world!
\n"); }
This function simply prints the text "Hello world!" to the Web page. It can be called just like a regular PHP function:
Anatomy of a function
Writing your own functions is as simple as using the function command like this:
function somefunction() { [php code] }
The command function is followed by the unique name of your function (in this case somefunction). Next comes the parentheses, which may contain variable names, and the actual function code itself, enclosed in curly braces.
Here's a basic example:
function helloworld() { print("Hello world!
\n"); }
This function simply prints the text "Hello world!" to the Web page. It can be called just like a regular PHP function:
include("functions.inc.php");
helloworld();
?>
Monday, September 15, 2008
A List Apart: Articles: Dynamic Text Replacement
A List Apart: Articles: Dynamic Text ReplacementFantastic site with hell lotta tips and tricks on php / css / html /shtml and almost ANYTHING...
ASP.NET QuickStart Tutorials
ASP.NET QuickStart Tutorials
The ASP.NET TreeView control is a powerful server-control for rendering TreeView UI, as shown in the figure below. It supports a variety of programming models, from statically-defined trees, to dynamically constructed trees, to databound trees. The TreeView's rendering is fully customizable, allowing for a wide-range of look-and-feels for the control. The TreeView supports both postback-style events and simple hyperlink navigation, as well as a unique event handling model that allows data to be retrieved directly from a client without requiring a server postback. It also supports rendering on a variety of browsers, and can take advantage of up-level capabilities, such as client-script on later desktop browser versions.
The ASP.NET TreeView control is a powerful server-control for rendering TreeView UI, as shown in the figure below. It supports a variety of programming models, from statically-defined trees, to dynamically constructed trees, to databound trees. The TreeView's rendering is fully customizable, allowing for a wide-range of look-and-feels for the control. The TreeView supports both postback-style events and simple hyperlink navigation, as well as a unique event handling model that allows data to be retrieved directly from a client without requiring a server postback. It also supports rendering on a variety of browsers, and can take advantage of up-level capabilities, such as client-script on later desktop browser versions.
Sunday, September 14, 2008
Friday, September 12, 2008
ImageMagick: Convert, Edit, and Compose Images
ImageMagick: Convert, Edit, and Compose Images
ImageMagick® is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.
ImageMagick® is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.
Thursday, September 11, 2008
PHP & jQuery image upload and crop | WebMotionUK
PHP & jQuery image upload and crop | WebMotionUK
allow user to crop uploaded image PHP this is with example in PHP5
allow user to crop uploaded image PHP this is with example in PHP5
Configuration - eye48 Wiki
Configuration - eye48 Wiki
To work properly Instant Picture need to know where your filters and cache files are located. Please edit following lines:
If the directories cache and filters are in the same folder where instantpicture.php is located you don't need to edit this. It will work! Otherwise Instant Picture Creator needs to know that places relative to his own location. Example:
To work properly Instant Picture need to know where your filters and cache files are located. Please edit following lines:
If the directories cache and filters are in the same folder where instantpicture.php is located you don't need to edit this. It will work! Otherwise Instant Picture Creator needs to know that places relative to his own location. Example:
PHP File Upload Security
PHP File Upload Security
- Disable Script Execution an Hide Indexes with .htaccess
- Using PHP Functions to Check Uploaded File
- How to Read & Display the Photo Files?
» Implementing Secure File Upload in PHP using .htaccess
» Implementing Secure File Upload in PHP » Corpocrat Blog
Disable Script Execution with .htaccess
Just create .htaccess file with contents below and place it on the uploads folder to disable running malicious scripts.
AddHandler cgi-script .php .php3 .php4 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI
Disabling executing of these files could give us an extra layer of protection.
Further if you are allowing your users only photos or picturer, you can restrict other files by placing the following code your your .htaccess file.
Disable Script Execution with .htaccess
Just create .htaccess file with contents below and place it on the uploads folder to disable running malicious scripts.
AddHandler cgi-script .php .php3 .php4 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI
Disabling executing of these files could give us an extra layer of protection.
Further if you are allowing your users only photos or picturer, you can restrict other files by placing the following code your your .htaccess file.
Monday, September 8, 2008
WebMail Client , WebMail Server , Email Server for Linux, Unix and Windows - @Mail Support
WebMail Client , WebMail Server , Email Server for Linux, Unix and Windows - @Mail Support
Customizing the login and sign-up screens in @Mail is a simple and effective way of branding @Mail and incorporating it into your web-site theme. It can be done on a per-domain basis allowing you to provide a unique Webmail service for several domains, while still only having one copy of @Mail installed on your server.
Customizing the login and sign-up screens in @Mail is a simple and effective way of branding @Mail and incorporating it into your web-site theme. It can be done on a per-domain basis allowing you to provide a unique Webmail service for several domains, while still only having one copy of @Mail installed on your server.
Thursday, August 14, 2008
Free Online Tennis Instruction and Tips on Winning Strategy, Tactics, and Strokes
Mouse Trial - with text
This page contains mouse trail with text script
This page contains mouse trail with text script
Javascript Tutorial - Form
Javascript Tutorial - Form
There's nothing more troublesome than receiving orders, guestbook entries, or other form submitted data that are incomplete in some way. You can avoid these headaches once and for all with JavaScript's amazing way to combat bad form data with a technique called "form validation".
There's nothing more troublesome than receiving orders, guestbook entries, or other form submitted data that are incomplete in some way. You can avoid these headaches once and for all with JavaScript's amazing way to combat bad form data with a technique called "form validation".
Thursday, August 7, 2008
Cut & Paste Image zoom in/out
Cut & Paste Image zoom in/outThis is an impressive script that allows you to conveniently zoom in and out of an image. Functional in IE4+, NS6 and Opera 6+, the script does not push content around the image aside as it is zooming, unlike most similar scripts out there. You can even add the effect to multiple images on the same page!
Stu Nicholls | CSSplay | An image magnifier
Stu Nicholls | CSSplay | An image magnifier
Rain plays a major role in the hydrologic cycle in which moisture from the oceans evaporates, condenses into clouds, precipitates back to earth, and eventually returns to the ocean via streams and rivers to repeat the cycle again. There is also a small amount of water vapor that respires from plants and evaporates to join other water molecules in condensing into clouds.
The amount of rainfall is measured using a rain gauge. It is expressed as the depth of water that collects on a flat surface, and can be measured to the nearest 0.27 mm or 0.01 in. It is sometimes expressed in litres per square metre (1 liter/m² = 1 mm).
Rain plays a major role in the hydrologic cycle in which moisture from the oceans evaporates, condenses into clouds, precipitates back to earth, and eventually returns to the ocean via streams and rivers to repeat the cycle again. There is also a small amount of water vapor that respires from plants and evaporates to join other water molecules in condensing into clouds.
The amount of rainfall is measured using a rain gauge. It is expressed as the depth of water that collects on a flat surface, and can be measured to the nearest 0.27 mm or 0.01 in. It is sometimes expressed in litres per square metre (1 liter/m² = 1 mm).
Randsco - z-index on a:hover elements
Randsco - z-index on a:hover elements
The main advantage of PZ2, over the original, is that in PZ2 the zoomed image overlays the text, instead of shifting the text to make room for the zoomed image. This is demonstrated below. (Note: There are some caption styling differences between the two, which can be changed, in the CSS file, to be alike.)
The main advantage of PZ2, over the original, is that in PZ2 the zoomed image overlays the text, instead of shifting the text to make room for the zoomed image. This is demonstrated below. (Note: There are some caption styling differences between the two, which can be changed, in the CSS file, to be alike.)
Pure CSS Tooltips
Pure CSS Tooltips
What is a tooltip? This is a tooltip an aiding text that appears just when you roll on with the mouse. The basic idea comes from Eric Meyer's pure css popupsa very clever way to get dynamic effects on an html page without using javascript.
My idea was to add position:relative to the link, in order to allow the span element inside to position absolutely respect the parent link. This code has been tested in Ie5.5, Opera7.11 and Mozilla 1.4 and works fine. Solved ie bug adding some z-index, but with the modifications done this technique will be buggy in Opera7.2 .
Now, let's have a look at the basic csscascade style sheets, the separation from content and presentation code for the tooltip:
What is a tooltip? This is a tooltip an aiding text that appears just when you roll on with the mouse. The basic idea comes from Eric Meyer's pure css popupsa very clever way to get dynamic effects on an html page without using javascript.
My idea was to add position:relative to the link, in order to allow the span element inside to position absolutely respect the parent link. This code has been tested in Ie5.5, Opera7.11 and Mozilla 1.4 and works fine. Solved ie bug adding some z-index, but with the modifications done this technique will be buggy in Opera7.2 .
Now, let's have a look at the basic csscascade style sheets, the separation from content and presentation code for the tooltip:
Wednesday, August 6, 2008
Monday, August 4, 2008
phalanger-on-xp [Phalanger]
phalanger-on-xp [Phalanger]
Step by step guide describes how to configure - PHP COMPILER in Windows XP with IIS 5.1 to run Phalanger applications.
Step by step guide describes how to configure - PHP COMPILER in Windows XP with IIS 5.1 to run Phalanger applications.
Sunday, August 3, 2008
Using the Popup Object
Using the Popup Object Using the Popup Object The popup object enables you to create window objects that take full advantage of Dynamic HTML (DHTML). Click the Show Me button to see some of the exciting things that can be done using a popup. This article first outlines the important features of the popup object. Several of these features and the basic syntax to use with the popup object will then be demonstrated. Alternatives to the popup will be explored in the last section. |
Ajax tooltip
Ajax tooltipYou can download the entire script from this Zip file Files included in the package: ajax-tooltip.html = Main HTML file js/ajax-tooltip.js = Main JS file for the script> js/ajax.js = Ajax (Library from http://twilightuniverse.com/projects/sack) js/ajax-dynamic-content.js = The dynamic content script from this site css/ajax-tooltip.css = CSS for tooltip css/ajax-tooltip-demo.css = CSS for the demo images/arrow.gif = Arrow used in the tooltip demo-pages = External files loaded by the tooltip |
Four Exciting Ways to Use the Popup Object
Four Exciting Ways to Use the Popup Object Context menus are accessed by clicking the right mouse button. Usually this displays a default context menu. Now you can create a customized context menu with the popup object. |
Send mail example using the mail function
Send mail example using the mail function
The mail function in php is built-in unlike a lot of other languages such as ASP and is extremely easy to use. Below is a simple example (copy the below into a file with a php extension such as mailtest.php and upload it to your webspace):
NB: Please ensure you have php setup for your domain, you can do this using your hosting control panel under domain menu > website settings > ticking the php checkbox and clicking save
The mail function in php is built-in unlike a lot of other languages such as ASP and is extremely easy to use. Below is a simple example (copy the below into a file with a php extension such as mailtest.php and upload it to your webspace):
NB: Please ensure you have php setup for your domain, you can do this using your hosting control panel under domain menu > website settings > ticking the php checkbox and clicking save
E-mail Validation with PHP
E-mail Validation with PHPWhen you register on at a website, the site normally checks if the e-mail address that you enter is in a valid format. This is done by using what called a Regular Expression. What we need to do is check if a string (eg $email) matches the regular expression:
Friday, August 1, 2008
Contact PHP Email Form Script w copy n paste free contact php script code
Contact PHP Email Form Script w copy n paste free contact php script code Email ID validation scriptif(!$visitormail == "" && (!strstr($visitormail,"@") !strstr($visitormail,"."))) { echo " Use Back - Enter valid e-mail\n";$badinput = " Feedback was NOT submitted\n";echo $badinput;die ("Go back! ! "); } if(empty($visitor) empty($visitormail) empty($notes )) { echo " Use Back - fill in all fields\n";die ("Use back! ! "); } |
Wednesday, July 30, 2008
Free Domain Names - Free Domain Name with Web Hosting
Free Domain Names - Free Domain Name with Web Hosting
All best and cheapest reseller hosting website listing and ranking page |
Thursday, July 24, 2008
Saturday, July 19, 2008
Solved: PHP and AJAX Live Search - Tech Support Guy Forums
Solved: PHP and AJAX Live Search - Tech Support Guy Forums
This is really cool code for YOUR OWN SEARCH ENGINE
CHECK THIS OUT
This is really cool code for YOUR OWN SEARCH ENGINE
CHECK THIS OUT
Friday, May 16, 2008
Saturday, May 10, 2008
Monday, April 28, 2008
Friday, April 25, 2008
Subscribe to:
Posts (Atom)