Crew-Portal Posted August 2, 2007 Share Posted August 2, 2007 So far I got a script to change text into an edit box for incorperation into mysql but...Can you change the Form Function using javascript. And the action of the text box so Upon clicking edit it changes the function to a PHP script that edits information on a mysql database and changing the Edit button to saying something like Save? This is What I Got so Far::: <form id="actionform"> <div id="body"><?php echo ($mysql_query()); ?></div> <input type="button" onmouseup="cvert('body')" id="actionbutton" value="Edit!"/> </form> <script type="text/javascript"> function cvert(e) { box = document.getElementById(e); ab = document.getElementById("actionbutton"); box.innerHTML = '<textarea name="body_content">' + box.innerHTML + '</textarea>'; ab.onmouseup = 'document.getElementById("actionForm").submit()'; } </script> Link to comment https://forums.phpfreaks.com/topic/63084-solved-javascript-text/ Share on other sites More sharing options...
Crew-Portal Posted August 2, 2007 Author Share Posted August 2, 2007 Nvm I got it figured out! TOPIC SOLVED!!! Link to comment https://forums.phpfreaks.com/topic/63084-solved-javascript-text/#findComment-314232 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.