bytesize Posted May 28, 2013 Share Posted May 28, 2013 I can't figure out how to make - textarea[name=send[mc_comment]] - work.When I add text to send[mc_comment] it only works on the first post comment and the other post comments are empty!Can anyone help me with this?a, b, c, d, e work as they should. $curpost = postid in the database. <script type="text/javascript"> var commentUrl = "views/layouts/comments.php"; function mainComment(a,b,c,d,e,f) { var f = $("textarea[name=send[mc_comment]]").val(); var page = (d); $("#"+page).text("Please wait...").show(); $.post(commentUrl,{user:a, friend:b, postid:c, where:d, which:e, send:f},function(data){$("#"+page).html(data).show().fadeOut(1000)}) } </script> <form action="" method='POST'> <textarea name='send[mc_comment]'></textarea> <a href='#' onclick="return false" onmousedown="javascript:mainComment('<?php echo $usercode; ?>', '<?php echo $othermember; ?>', '<?php echo $curpost; ?>', '<?php echo 'add'.$curpost; ?>', '<?php echo $comment; ?>');">Yes</a> </form> Link to comment https://forums.phpfreaks.com/topic/278493-problem-displaying-textarea-array/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.