Free web development scripts for the webmasterDevelopment Scripts


 
 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 1 user online
 o Most users online: 67
 o Home
  o PHP
   o Forms Manipulation
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o White Watch Store
 o iPad 64gb 3g
 o Free Wedding Websites
 o Invoice Software
 o Invoice Software
 o UK Business Franchises
 o OxyScripts

Switching on different form buttons (Rated 4)

Description:

This code snippet shows how to do something different depending on which button is pressed on a form.

You could have 4 different buttons, all requiring different behaviour, looking at this code, you can see how efficient it would be to use a switch statement.

Code starts here


<?PHP
// Posted by JPenn of Devshed
// http://forums.devshed.com

$s_on = ( bool )false;
if ( isset(
$_POST['sub_one'] ) ) $s_on = 1;
if ( isset(
$_POST['sub_two'] ) ) $s_on = 2;
if ( isset(
$_POST['sub_three'] ) ) $s_on = 3;
if ( isset(
$_POST['sub_four'] ) ) $s_on = 4;

switch(
$s_on )
{
case
1:
/* Do Something */
break;

case
2:
/* Do Something */
break;

case
3:
/* Do Something */
break;

case
4:
/* Do Something */
break;

default:
/* Do Something */
break;
}
?>


Submitted by Devscripts on 18-02-2003 11:55


Recent Additions (from all categories)

(PHP) T Shirt Printing Software

(PHP) Youtube Video Organizer Script

(PHP) MP3z - MP3 Search Engine Script

(PHP) Recipez- PHP Recipe Script

(ASP) Stop image hotlinking and downloading. Web image protection is easy with Image Trapper.

Top Rated Scripts

(Javascripts) Javascript Delayed Redirection Rating: 5

(PHP) Random Links and images with PHP & MySQL Rating: 5

(PHP) RSS/XML news feed headline grabber! Rating: 5

(PHP) Random Signatures/Avatars Rating: 5

(Javascripts) Detecting Client Web Browser Rating: 5

© Copyright 2003 - Devscripts.net