Popular Other Languages Codes

Recursive Web Directory Listing in PHP

Description This program provides a view of the files inside your web server's document root, formatted like the output of the Unix command ls. Filenames are linked so that you can download each file, and directory names are linked so that you ...

0 Comments. 486 views since Mar 21, 2009

Operator Overloading in C-Sharp

Description Simple Operator Overloading Example which explore some basic concepts of operator overloading in C# Source Code using System; using System.Collections.Generic; using System.Text; namespace C ...

0 Comments. 483 views since Aug 21, 2008

Multi Form Wizard in PHP

Description If we want to use a form that displays more than one page and preserves data from one page to the next. For example, our form is for a survey that has too many questions to put them all on one page. In this case, we can use session ...

0 Comments. 385 views since Mar 21, 2009

Find Broken Links in PHP

Description This program produces a list of links in a page and their status. It tells you if the links are okay, if they've been moved somewhere else, or if they're bad. Run the program by passing it a URL to scan for links in GET query as htt ...

0 Comments. 373 views since Mar 21, 2009

Send Mail

Description This code shows how to send email by creating an email link. Source Code <html> <body> <p> This is a mail link: <a href="mailto:someone@gmail.com?subje ...

1 Comments. 370 views since Sep 16, 2008

Mouse Firelight

Description This code will Display a Colourful Firelight on Mouse movement. Source Code <STYLE TYPE="text/css"> <!-- BODY{ overflow:scroll; overflow-x:hidden; } .s1 { ...

1 Comments. 349 views since Sep 9, 2008

XOR Encryption

Description This code Encrypts the given phrase using XOR function implementation. Source Code <HEAD> <SCRIPT LANGUAGE="JavaScript"> function encrypt(str, pwd) { if ...

0 Comments. 336 views since Oct 17, 2008

PHP File Upload

Description This code helps you to create a simple file upload system with your user can upload a file from the local computer to your webserver. Source Code <!DOCTYPE html PUBLIC "-//W3C//DTD XHT ...

1 Comments. 328 views since Mar 22, 2009

Types Of List

Description This code shows different types of list that can be made on your webpage. Source Code <html> <body> <h4>Numbered list:</h4> <ol> <li>Apples< ...

0 Comments. 301 views since Sep 16, 2008

WebSite Monitoring (Ping Website) in PHP

Description This code allows you to check whether a domain, server is up or down and how fast it is. Generally speaking, it implements a ping command with PHP. Source Code <?php // Function to check r ...

0 Comments. 297 views since Mar 22, 2009