Scripts

Scripts bank.

For radio station DJ’s or Shows

For radio station DJ’s or Shows

The following script will allow radio station’s website to display the show or dj’s that is currently on air. To use this code make sure your page has .php extention not .html Paste the code... 

DotNetNuke Makes It Easier For You

DotNetNuke Makes It Easier For You

DotNetNuke Community Edition is a leading free open-source content management system for ASP.NET websites.  With DotNetNuke, you can quickly and effectively deploy dynamic web applications with almost... 

Need Interactive Charts. Try Highcharts

Need Interactive Charts. Try Highcharts

If you have a non-commercial website and you need to add charting capabilities in your website, Highcharts may suit your needs.  Highcharts is a free charting control developed purely with Javascript... 

Getting Started with most popular jQuery libraries

Getting Started with most popular jQuery libraries

The web development scene is moving forward at a lightning-fast pace, and it’s imperative that developers continue to keep their skills fresh. If you’ve been involved in front-end design or development... 

Kentico CMS License & 1-Year Maintenance

Kentico CMS License & 1-Year Maintenance

Today, we are announcing an awesome giveaway: a full license to Kentico CMS which includes one-year maintenance/support. Read on to see how you can participate and get a chance to win this awesome prize... 

SnackTools Makes Creating Rich Media Content Easy

SnackTools Makes Creating Rich Media Content Easy

Creating rich professional-level Flash media components isn’t simple for the ordinary designer or developer who doesn’t have a strong command of Flash/Flex. And even if you were a Flash/Flex... 

30 Fresh AJAX Tutorials And Techniques

30 Fresh AJAX Tutorials And Techniques

By Paul Andrew Using AJAX on websites and applications is pretty much taken for granted nowadays. Users expect it. They want to be able to edit a page in-place, they want search queries to be auto-suggested,... 

CSS PNG Hack For Internet Explorer (IE)

CSS PNG Hack For Internet Explorer (IE)

It’s been a problem for many developers. How do you create a transparent image for Internet Explorer 6 using a PNG. As you are all probably aware IE 6 does not support transparent PNGs but don’t panic... 

Display Random Image from a Directory

Display Random Image from a Directory

This script outputs random image from a defined directory. Make sure to change the path to your images directory and also an image to display if directory listing fails. I have found this piece of code... 

Displays a hyperlinked Directory list

Displays a hyperlinked Directory list

Displays a hyperlinked list of all the files contained in a specified folder. A really simple way to have your own directory browser, just drop the file in the folder and it will show an index of all files... 

Displays a random quote on a web page

Displays a random quote on a web page

Displays a random quote on a web page. Quotes are picked from a list that you define. Create a page and call it ( random_quote.php ) or anything you like than add the php include code below to your... 

Display different image each day of the week

Display different image each day of the week

This PHP script will get the day of the week from the server date and then display an image (jpg or gif) to match.  Change the name of the image folder, Images must be named Monday.gif, Tuesday.gif etc,... 

PHP Flickr! photo album on your website

PHP Flickr! photo album on your website

This code uses your Flickr! account and creates the URLs to the pictures for display on your own personal website! The full documentation is available at http://www.strydominc.za.net/index.php?p=projectdetail&d=phpflickrphoto <?php /************************************************* www.strydominc.za.net Created... 

Very Simple Password Protection of a Page

Very Simple Password Protection of a Page

// Bare Bones demo of password protection <?php $password = "abc123"; if ($_POST[doddle] == $password) { $tell = 1; } else { $tell = 2; } if (! is_string($_POST[doddle])) $tell = 0; ?> <html> <head><title>A...