Canman2005 Posted August 26, 2009 Share Posted August 26, 2009 Hi all I found this super cool script http://www.mredkj.com/tutorials/tableaddrow.html instead of a button called "add" I have replaced it with <select name="" onChange="addRowToTable();"> <option value="111">111</option> <option value="222">222</option> <option value="333">333</option> </select> so that when you select something from the menu, it inserts a new row for you. My question is. How can I carry the value from the menu to the new row? So for example, if I selected the menu item "222", it would carry over and insert "222" into the new row added. Is that possible and if so, can anyone help please? Thanks in advance Dave Quote Link to comment Share on other sites More sharing options...
student101 Posted August 26, 2009 Share Posted August 26, 2009 You could try this... foreach ($_POST as $key => $value){ if ($value == '') {echo "$key is empty";die;} } hope it helps. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.