Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Created April 8, 2013 19:23
Show Gist options
  • Save willmendesneto/5339684 to your computer and use it in GitHub Desktop.
Save willmendesneto/5339684 to your computer and use it in GitHub Desktop.
exemplo de uma requisição ajax a um método de um controller no framework Codeigniter PHP
// BASE_URL é uma variável javascript que pega o valor da função 'base_url()' do CI
$.post(BASE_URL + 'C_app/pedido',
{
status: status,
id: id
}, function(data){
alert(result);
}, 'html');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment