Current location: Hot Scripts Forums » General Web Coding » JavaScript » Php casestatement URL


Php casestatement URL

Reply
  #1 (permalink)  
Old 01-12-05, 06:00 PM
blessedrub blessedrub is offline
Newbie Coder
 
Join Date: Jan 2004
Posts: 44
Thanks: 0
Thanked 0 Times in 0 Posts
Php casestatement URL

Can someone please help me. I have a case statement

switch ($Amount)
{
case "20":
print("Not right");
break;


How can I write the statement to where if they chose 20 it will automatically go to www.example.com?

I'm sure this is easy but I new to php.
Reply With Quote
  #2 (permalink)  
Old 01-12-05, 08:12 PM
End User's Avatar
End User End User is offline
Level II Curmudgeon
 
Join Date: Dec 2004
Posts: 3,027
Thanks: 14
Thanked 35 Times in 33 Posts
Quote:
Originally Posted by blessedrub
Can someone please help me. I have a case statement

switch ($Amount)
{
case "20":
print("Not right");
break;


How can I write the statement to where if they chose 20 it will automatically go to www.example.com?
.
Try :

Code:
switch ($Amount)
	  {
	  case "20":
         header("Location: http://www.example.com/");
	  break;
This assumes you haven't already sent anything to the browser, not even a space. If you have, this will give you an error message and quit.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP and MySQL ? rob2132 Hot Scripts Forum Questions, Suggestions and Feedback 4 08-29-08 02:22 AM
2 profitable script sites for sale cms-master.com General Advertisements 3 07-03-07 10:17 AM
The Reasons Why do you Need URL Rewriting MODULE to Enchance your Web? handry PHP 11 08-05-05 07:32 AM
root url in php nassau PHP 22 12-05-04 04:24 PM
100 Web Templates & 10 PHP Scripts for sale! HostersUK.co.uk General Advertisements 0 01-10-04 12:31 AM


All times are GMT -5. The time now is 10:38 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.