Reply
Looking for an unusual script.
Old 07-15-2003, 07:33 PM Looking for an unusual script.
Junior Talker

Posts: 3
I'm looking for a script that will allow a web visitor to
enter information in 3 text boxes on a web page and when
they press submit they go to second page that contains
4 images with the information they submitted above each image.


I don't know if I explained my request very well.


Any ideas?

Thanks
KLAATOO is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
Old 07-15-2003, 08:12 PM
Omega's Avatar
Extreme Talker

Posts: 234
Location: Sharpsville, PA
Do the pics have to correspond to what is entered by the visitor? or just have the text above it?
__________________
-----------------------------------------------
Current Projects:Texas Silver Rush | Back In The Day Sports

Omega Media Design
Omega is offline
Reply With Quote
View Public Profile Visit Omega's homepage!
 
Old 07-15-2003, 10:40 PM
Junior Talker

Posts: 3
No, the pics stay the same. The visitor submitted info (Name, email and web url) goes at the top of each image.
KLAATOO is offline
Reply With Quote
View Public Profile
 
Old 07-16-2003, 09:38 AM
Omega's Avatar
Extreme Talker

Posts: 234
Location: Sharpsville, PA
Sorry for another question, but is the text ON the image, or just above?

name email url
-------- --------- ---------
| | | | | |
| | | | | |
-------- --------- --------

And - is the do you want the information to be sent/stored/displayed only?
__________________
-----------------------------------------------
Current Projects:Texas Silver Rush | Back In The Day Sports

Omega Media Design
Omega is offline
Reply With Quote
View Public Profile Visit Omega's homepage!
 
Old 07-16-2003, 12:28 PM
Novice Talker

Posts: 6
You can do this quite simply with PHP. You will need to set up your second page to "echo" the $_POST or $_GET variables to the page..

Example:

-- -- Page 1.htm -- --
<form name='myform' action='page2.php' method='post'>
<input type='text' name='name' /><br />
<input type='text' name='email' /><br />
<input type='text' name='url' /><br />
</form>
-- -- end --

-- -- Page2.php -- --
<?php
echo $_POST['name']."\n<br>";
echo "<img src='myimage1.jpg' />\n<br>";
echo $_POST['email']."\n<br>";
echo "<img src='myimage2.jpg' />\n<br>";
echo $_POST['url']."\n<br>";
echo "<img src='myimage3.jpg' />\n<br>";
?>
-- -- end Page2.php --

Hope that helps..
__________________
Discount Magazine Subscriptions - http://www.snagmags.com
agpawa is offline
Reply With Quote
View Public Profile Visit agpawa's homepage!
 
Old 07-17-2003, 04:40 PM
Junior Talker

Posts: 3
For some reason my hosting company doesn't support php. Is it possible to do what I want with Javascript?
KLAATOO is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Looking for an unusual script.
 

Thread Tools

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.13693 seconds with 12 queries