Haklısın bu işin içinde başka bir iş var, $_GET değişkenini otomatik değiştiren herhangi construct vs olabilir.
php dosyam
<style>
a { cursor: pointer; }
</style>
<script type="text/javascript">
$(document).ready(function () {
$.table = $('#araTable').dataTable({ "ordering": false});
$("input[filter]").bind("input", function(e) {
var index = $(this).attr('filter');
var sKey = $(this).val();
$.table.DataTable().column(index).search(sKey, false, true).draw();
$.hesapla();
});
$("#cmdExport").click(function(){
$('#form01').submit();
});
$.openPage = function(ID){
$.fancybox.open({
href : 'rowshow.php?ID='+ID,
type : 'iframe',
padding : 5
});
};
});
</script>
<?php
include "lib/include.php";
if($_GET["type"]=="phone"){
$data = $_GET["data"];
$sorgu= mysql_query("select * from kayitlar where telno = '00".$data."'");
while($satir=mysql_fetch_array($sorgu))
{
echo "Bu numara daha önce ". "<b>".$satir["ekleyen"]."</b>". " tarafından aranmış ".$satir["time"]." ";
echo " <a title='Bu satırı güncelle' onclick=\"$.openPage(".$satir["id"].");\">Kaydı Gör</a></br>";
}
}
if($_GET['type'] == "name") {
echo urldecode($_GET['data']);
}
?>