Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <script>
  2. $(function(){
  3. $('#maisestrelas').click(function(){
  4. $.ajax({
  5. url:'application/views/includes/grava_estrela.php',
  6. type:'POST',
  7. dataType:'html',
  8. data:{},
  9. success:function(resp){
  10. console.log(resp);
  11. }
  12. });
  13.  
  14. });
  15. });
  16. </script>
  17.  
  18. arquivo grava_estrela.php
  19.  
  20. <?php
  21. $id = 12;
  22. $query = $this->nome_model->verifica_voto($id)->row();
  23. echo $query->id;
  24.  
  25. erro:<b>Fatal error</b>: Using $this when not in object context in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement