Hello,
I need to script a small page which will have two main issues. I want to have drop down boxes on one side and based on the choices made in the boxes, respective text becomes visible on the other side. In the text that becomes visible, I need to be able to enter additional bits of text in certain blanks. At the end of all this, I can click submit or any generic button which will show me a cleaner view of the composed text.
Thank you all.
Regards.
1 form. dynamic text from drop down boxes
Moderator: General Moderators
...
I don't know if this is the most logical way of doing it but you could do this
Have your dropdown boxes on the left side, have it so when you click them, it sends the value of that form to a separate script on your server, with the target of target="rightside"
Then on the right site have an iframe with the name of "rightside" (so your dropdown box selection is sent here) and have the source be rightside.php ... or some script that acts on the value you had sent to it.
Have your dropdown boxes on the left side, have it so when you click them, it sends the value of that form to a separate script on your server, with the target of target="rightside"
Then on the right site have an iframe with the name of "rightside" (so your dropdown box selection is sent here) and have the source be rightside.php ... or some script that acts on the value you had sent to it.