Ben kullanarak bir php sayfası çağırıyorum. Load ()
.load('page.php?user='+user+'&page='+page)
if you go to the actual page.php and type page.php?user=1&page=2
you get the same result, how could I stop this from happening?
encrypting data maybe?
Birisi doğru yönde, tezahüratlar beni noktası olabilir.
@ Lonesomeday,
Bu cevap benim için çalışıyor, sizin olsa da doğru idi:
if(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { it's an ajax request validate id and continue! } else { this is not an ajax request, get out of here! }
"ifaour" tarafından sunuldu