JPark Posted May 26, 2009 Share Posted May 26, 2009 Can I do this? Let's say I have 2 php pages, named page1.php and page2.php. On page1.php, I have 2 links. Each link points to page2.php. However, I want each link to perform a different query on page2.php. For example, the first link would echo "This is the first link."; on page2.php, while the second link would perform some mathematical calculation -- still on page2.php. Is this possible? Basically, I want to create a menu where all links point to the same page but each provides the results from different queries. I know I can create different pages for each link/query but I'd rather have it all on one page. Thanks. Link to comment https://forums.phpfreaks.com/topic/159744-links-to-do-different-queries/ Share on other sites More sharing options...
dennismonsewicz Posted May 26, 2009 Share Posted May 26, 2009 I would look into creating a switch to perform your action(s) on page2.php Link to comment https://forums.phpfreaks.com/topic/159744-links-to-do-different-queries/#findComment-842584 Share on other sites More sharing options...
kickstart Posted May 26, 2009 Share Posted May 26, 2009 Hi Just have links to page2.php?query=1 and page2.php?query=2 , then check $_GET['query'] in page2.php to see which one to execute. All the best Keith Link to comment https://forums.phpfreaks.com/topic/159744-links-to-do-different-queries/#findComment-842586 Share on other sites More sharing options...
JPark Posted May 27, 2009 Author Share Posted May 27, 2009 Keith, Works like a charm. Mucho thankso. Link to comment https://forums.phpfreaks.com/topic/159744-links-to-do-different-queries/#findComment-843138 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.