General Programming Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingGeneral Programming Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old April 9th, 2003, 05:33 PM
Frank Frank is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2002
Posts: 8 Frank User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Unhappy Search with redirect - NEED HELP!

Hello

I'm still in the start-phase of PHP programming, so this may be a silly Q for the most of you.

I'm trying to make a simple search engine in PHP. The "search engine" is supposed to be a "MulitiSearch". With radiobuttons to select the wanted extern site to search in, ex. Amazon.com - just parse the searchstring from amazon.com.

Anyhow, I get the form right, and a bit on the PHP part. But when it comes to the redirecting, something happends.

I use many if functions, and a header("Location: $url"); to redirect the url. Then I get this error:

Warning: Cannot add header information - headers already sent by (output started at /***/test.php:1) in /***/test.php on line 23

Anyone who can help me?

Reply With Quote
  #2  
Old April 9th, 2003, 06:20 PM
jpenn jpenn is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: Washington, DC
Posts: 317 jpenn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 3 sec
Reputation Power: 6
You can try to put ob_start() at top of page. Problem is somewhere in your app you are sending something to the browser before hitting the header() part. Also, if you have many if statements, a better and more effecient approach would be to use a switch() statement ->
PHP Code:
/****************************
Switch on radio button selected
****************************/
switch( $_GET['radio_name'] )
{
    case 
1:
    
header'location: google.com?' $_SERVER["QUERY_STRING"] );
    break;

    case 
2:
    
header'location: amazon.com?' $_SERVER["QUERY_STRING"] );
    break;

    case 
3:
    
header'location: yahoo.com?' $_SERVER["QUERY_STRING"] );
    break;

    default:
    break;

__________________
~ Joe Penn

We work for free to help make this a valuable resource on the internet. Do you appreciate the help - did we provide help that will help you prosper and help that has contributed to sharpening your current skill set?

Show your appreciation and purchase something from our Amazon Wishlist's - it's simple and a great way to say thank you.




Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingGeneral Programming Help > Search with redirect - NEED HELP!


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 | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway