PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesPHP Development
The ASP Free website provides in-depth information on the latest developer tools available from Microsoft. Our cadre of writers, highly experienced industry experts, reveals the best ways to use established technologies as well as new and emerging technologies. Our coverage of Microsoft's development and administration technologies is among the most respected in the IT industry today.

ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month!
Download and Activate to enter!

Intel® Graphics Performance Analyzers is a powerful tool suite for analyzing and optimizing your games, media, and graphics-intensive applications. Used by some of the best developers on the planet, Intel GPA lets you maximize your app’s performance.


Tutorials
| Forums

Download to Enter
| Contest Rules

DOWNLOAD INTEL® GPA FOR FREE

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 13th, 2001, 11:37 AM
bensin bensin is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Posts: 93 bensin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 40 m 32 sec
Reputation Power: 12
- abracadabra -

I'm have hyperlinks in a a page called Quotes.php when some clicks a link i the values to appear of that same Quotes.php page. example. Quotes.php?letter=A when this is done i want the results from this query to be displayed on this same page - this query will also creat links and the results of clicking on these links should be displayed also on this same page.

I need to know how do i get - get result 1 to dispay when 2, and two has no value and ,when 1 is empty to display 2 only and not three, when 3 has a value don't display 1 and 2.


I want the initial page, search, and the results displayed all in one page.

see and exmple at http://www.rebelsoul.com/Quotes.php
__________________
bj

Reply With Quote
  #2  
Old July 13th, 2001, 02:00 PM
nih58 nih58 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2001
Location: Australia
Posts: 10 nih58 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I need to know how do i get - get result 1 to dispay when 2, and two has no value and ,when 1 is empty to display 2 only and not three, when 3 has a value don't display 1 and 2.
__________________
-=-=-=-=-=-=-=-=-=-=-=-=-
PHP Scripts n Stuff
http://www.bcnstech.net/
-=-=-=-=-=-=-=-=-=-=-=-=-

Reply With Quote
  #3  
Old July 14th, 2001, 06:04 PM
thedanmichael thedanmichael is offline
Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Posts: 25 thedanmichael User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Use switch

Use the php switch function:

first, define your functions

PHP Code:
function default() {
//code for form here
}
function 
letter_A() {
//a function
}
//etc. 

Then:
PHP Code:
switch($letter) {

case 
A:
letter_A();
break;

case 
B:
letter_B();
break;

default:
default();
break;



or, you can set up a system of ifs:
PHP Code:
if ($letter == A) {
echo 
"A";
}
if (
$somevar == some_value) {
do 
something


Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > - abracadabra -


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 5 - Follow our Sitemap