chrisjchrisj
05-05-2021, 05:35 PM
1) Script Title: Cross Browser marquee II
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex2/cmarquee2.htm
3) Describe problem: I'm wondering how this script can be modified so that ADD CONTENT HERE can be a textArea on a web page where a web page visitor can enter content, submit and see the scrolling content in the marquee container. I currently have a basic TextArea coding successfully working where text is entered, submitted and appears on the same html page (via php):
Comments:<br>
<textarea name="comments" id="comments" minlength="20" maxlength="120" rows="14" cols="130" form="myForm">
Hey... say something!
</textarea><br>
<form action="/textArea.php" target="processForm" method="post" id="myForm">
<input type="submit" value="Submit">
</form>
<br><br>
<iframe name="processForm" width="75%" height="70%">
and the php:
<?php
echo $_POST['comments'];
?>
but can't figure out how to integrate it with your cmarquee2 code.
Any guidance is greatly appreciated.
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex2/cmarquee2.htm
3) Describe problem: I'm wondering how this script can be modified so that ADD CONTENT HERE can be a textArea on a web page where a web page visitor can enter content, submit and see the scrolling content in the marquee container. I currently have a basic TextArea coding successfully working where text is entered, submitted and appears on the same html page (via php):
Comments:<br>
<textarea name="comments" id="comments" minlength="20" maxlength="120" rows="14" cols="130" form="myForm">
Hey... say something!
</textarea><br>
<form action="/textArea.php" target="processForm" method="post" id="myForm">
<input type="submit" value="Submit">
</form>
<br><br>
<iframe name="processForm" width="75%" height="70%">
and the php:
<?php
echo $_POST['comments'];
?>
but can't figure out how to integrate it with your cmarquee2 code.
Any guidance is greatly appreciated.