Jump to content

Problem displaying textarea array


bytesize

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.