Jump to content

string encoding


manix

Recommended Posts

Hey..

 

I have a form where a user inputs text stuff right and I need to encode it BEFORE sending it to the submit page, and after that I need to decode it and import it into mysql.. What I thought of was to encode it in javascript and then decode in php but after a little googling I found out that php and javascript don't actually have many encoding functions in common and I'm stuck now..

Link to comment
https://forums.phpfreaks.com/topic/244797-string-encoding/
Share on other sites

yeah if it was that simple I wouldn't be posting, see that's the problem I don't have $str

 

<textarea id='comment' class='writingarea'></textarea>

		<script type='text/javascript'>
		$.post('usercomments.php', { 
									id: user id here;
                                                                                comment: $('#comment').val()
								},
		function(returned) {
			$('#comments').html(returned).show();
		});
		</script>

Link to comment
https://forums.phpfreaks.com/topic/244797-string-encoding/#findComment-1257445
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.