[PHP] Re: similar page replication

2009-03-26 Thread tedd


PJ wrote:

 I have a series of pages to display that are all exactly the same,
 except for a couple of small changes like 1 number that needs to be
 changed for a mysql_query, the title of the page, and the page_name.php.
 I am wondering how these changes could be implemented when clicking on
 an href link? Is there some way to redirect the link to another page
 which would then $_GET['the_link'] and then pass the related info as
 $strings to another page (a sort-of master page) that would then display
 the results? I can visualize the solution, but is it possible? This
 would avoid repeating the same page some 30+ times.



Try this demo, it will show you how to do that:

http://sperling.com/examples/include-demo/

Cheers,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: similar page replication

2009-03-26 Thread Shawn McKenzie
PJ wrote:
> I have a series of pages to display that are all exactly the same,
> except for a couple of small changes like 1 number that needs to be
> changed for a mysql_query, the title of the page, and the page_name.php.
> I am wondering how these changes could be implemented when clicking on
> an href link? Is there some way to redirect the link to another page
> which would then $_GET['the_link'] and then pass the related info as
> $strings to another page (a sort-of master page) that would then display
> the results? I can visualize the solution, but is it possible? This
> would avoid repeating the same page some 30+ times.
> 

Just use one page if you don't already have the 30 pages.  Something
like this maybe (needs lots of work, just an example):

index.php



Then the links on your page would be index.php?page=page1 etc...

If you have multiple pages, then in the switch set a $filename and then
after the switch include($filename).

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php