Jump to content

Passing large string through AJAX


fraser5002

Recommended Posts

Hi i am using the following to try and add a string to a mysql database

 

 

  var ajax_connection = createRequest();

  ajax_connection.open('get', "addtodb.php?text=" + textstring);

  ajax_connection.send(null);

 

My problem lies when the string gets large >2000 characters as IE can no longer use URLs this long.  How else can i achieve passing such a large string ? My idea was to use a cookie or a session but it seems a bit overkill in my opinion.  Is there anything simpler?

Link to comment
https://forums.phpfreaks.com/topic/229136-passing-large-string-through-ajax/
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.