<div class="grid--cell fl1 lh-lg">
<div class="grid--cell fl1 lh-lg">
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, <a href="/help/reopen-questions">visit the help center</a>.
</div>
</div>
</div>
<div class="grid--cell mb0 mt8">Closed <span title="2011-12-02 04:02:08Z" class="relativetime">8 years ago</span>.</div>
</div>
</aside>
I'm making very simple ajax requests like
$.ajax({
type: "POST",
url: "atuamae.org/send.php",
data: dataString,
success: function() {
//display message back to user here
$('#message').val('');
}
});
and then this php sends it to the database, but this process is taking too long! what can i do to speed it up?
I have some $_SESSION variables inside the php could that be slowing it down?
</div>
You can profile your php code to find out if the bottle neck is in the code. Simplest way to profile a PHP script
Are you sure it's in PHP?? I'd assume it is from latency.