Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Coding Forum


You are currently viewing our Coding Forum as a guest. Please register to participate.
Login



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

Posts: 3
Trades: 0
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
 
 
Register now for full access!
Old 07-15-2003, 07:12 PM
Omega's Avatar
Extreme Talker

Posts: 234
Location: Sharpsville, PA
Trades: 0
Do the pics have to correspond to what is entered by the visitor? or just have the text above it?
__________________
-----------------------------------------------
Current Projects:
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE



Please login or register to view this content. Registration is FREE
Omega is offline
Reply With Quote
View Public Profile Visit Omega's homepage!
 
Old 07-15-2003, 09:40 PM
Junior Talker

Posts: 3
Trades: 0
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, 08:38 AM
Omega's Avatar
Extreme Talker

Posts: 234
Location: Sharpsville, PA
Trades: 0
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:
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE



Please login or register to view this content. Registration is FREE
Omega is offline
Reply With Quote
View Public Profile Visit Omega's homepage!
 
Old 07-16-2003, 11:28 AM
Novice Talker

Posts: 6
Trades: 0
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..
__________________

Please login or register to view this content. Registration is FREE
- http://www.snagmags.com
agpawa is offline
Reply With Quote
View Public Profile Visit agpawa's homepage!
 
Old 07-17-2003, 03:40 PM
Junior Talker

Posts: 3
Trades: 0
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 Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB 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.46102 seconds with 12 queries