Ben bir php dosyasına veri göndermek bu işlevi var, ama php dosya jquery kendisine gönderilen verileri almıyor gibi nedense, öyle görünüyor.
İşte jquery kodu:
<script type="text/javascript" src="JS/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".hide").hide();
$("#cake").hide();
var boz = $('#cake').val();
var search = $('#search').val();
$.get("petition_send.php", { id: boz, q: search }, function(data){
alert("Data Loaded: " + data);
});
$('.show').click(function checkPass(){
$(".hide").slideDown();
});
});
</script>
Şimdi, burada php dosyasıdır:
<?php
$xmlDoc = new DOMDocument();
include_once("petitionhint.php");
$xmlDoc->loadXML($xmlout);
$x=$xmlDoc->getElementsByTagName('friend');
//Get the q parameter from URL
$q = $_GET["q"];
$id = $_GET["petition_ID"];
//Lookup all links from the xml file if length of q>0
if(strlen($q)>0)
{
$hint = "";
for($i=0; $i<($x->length); $i++)
{
$y=$x->item($i)->getElementsByTagName('name');
$z=$x->item($i)->getElementsByTagName('url');
$w=$x->item($i)->getElementsByTagName('photo');
$l=$x->item($i)->getElementsByTagName('location');
if ($y->item(0)->nodeType==1)
{
//Find a link matching the search text
if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q))
{
if($hint != ""){
$hint .= "<br />";
}
$hint .= "<h1 id='poli'><a id='blue' href='";
$hint .= $z->item(0)->childNodes->item(0)->nodeValue;
$hint .= "&petition_ID='$id' >";
$hint .= $y->item(0)->childNodes->item(0)->nodeValue;
$hint .= "</a> <br /><a id='green'>";
$hint .= $l->item(0)->childNodes->item(0)->nodeValue;
$hint .= "</a>";
$hint .= "<br/><img width='30' height='30' id='schmidt' src='features/";
$hint .= $w->item(0)->childNodes->item(0)->nodeValue;
$hint .= "' /></h1>";
}
}
}
}
// Set output to "no suggestion" if no hint were found
// or to the correct values
if($hint == "")
{
$response = "No suggestions";
} else
{
$response = $hint;
}
//output the response
echo $response;
?>
Ben çalıştığınızda burada php kod parçası haline "$ id" değişken şunlardır:
$hint .= "&petition_ID=$id' >";
o görünmüyor. $ id değişkeni görünmüyor.