Ben tarayıcısında işlemek istiyorum another php dosyasına bir POST yapıyorum. jquery sonrası fonksiyon başka bir sayfaya yönlendirme değildir. bu app-display.php dosya da veri döndürmek için bekliyor. koduna bakabilirsiniz.
echo '<div class="showcase_URL"><a class="purl" name="'.$row->num.'" href="#">PROJECT URL</a></div>';
ne javascript içinde bugüne kadar var ise:
$(".showcase_URL a").click(function() {
//alert($(this).attr("name"));
var number = $(this).attr("name");
$.post(
"app-display.php",
{app: number},
function(data){
top.location.href = 'app-display.php';
});
});
ne app-display.php var:
$query = 'SELECT num, title, thumb_url, url, type, cat, dated, details FROM app WHERE `num` = "$_POST[app]"';
but it is currently giving me a page without the contents of app-display.php. all the other fragments of the page are loading: header, footer etc. the PHP Response (in Firebug) I am getting is the normal html of the page.
ben nasıl yapmalıyım?