June 15th, 2000, 03:08 PM
-
I have a web page called backgrounds that has about 73 images to choose from. When you click on an image, it takes you to the layouts page. There are 10 to choose from and when you click on one of those I want a page that shows the two choices like this:
Your background is <image here> and your layout is <image here>.
But I do not want to make over 800 different web pages for all variations. Does ANYONE know where I can get a script that does this, the easiest or most effective language to use, or any other usefull information concerning this form? PLEASE REPLY!!
Either reply here or e-mail at Ken72482@aol.com
(I know AOHELL sucks but it's not mine) 
THANKS!
-Ken
June 16th, 2000, 02:44 AM
-
Question is not clear.......
pls explain once again...
------------------
SR -
shiju.dreamcenter.net
"The fear of the LORD is the beginning of knowledge..."
June 22nd, 2000, 01:15 PM
-
you can have a hidden field for each picture.
the hideen field would send the picture filename.
<html>
<form method="post" action="script.pl">
<img src="..."><input type="hidden" name="picture" value="fileName">
the perl script would take theinfo and then create the html page. and then in the next page you could repeat the step from above.