Javascript is working and when i visit histories/history
. The alert
shows 'succes'
. Please help me if you can.
function sendFPost(){
var hello = "Hello World";
$.ajax({
type: 'POST',
url: '/untitled/histories/history',
data: hello,
dataType: 'html',
success: function () {
alert('success');
},
error: function () {
alert('error');
}
});
}
sendFPost();
public function history()
{
print_r($this->request->data);
}