Ben bir form için kod yazma, ve $ kullanarak bir php dosyasına teslim ediyorum. Olsun ().
Formu gönderirken üzerine, Kundakçı hata ile yanıt verir: Failed to load source for: http://localhost/llm/llm.php?name=afaf code>
Ben sadece adres çubuğuna http://localhost/llm/llm.php?name=afaf
yazarsan o düzgün çalışır!
İşte benim html ve php kod.
<html>
<head>
<title>Backoffice</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
function create(){
var fname = document.joinee.name.value;
alert(fname);
$.get("llm.php", {name:fname}, function(res) {
alert(res);
console.log(res);
});
}
</script>
</head>
<body>
<form name="joinee">
Name: <input type="text" size="30" id="name"/><br />
Parent: <input type="text" size="30" id="parent"/><br />
<input type="submit" value="Submit" onclick="create()"/>
</form>
</body>
</html>
PHP kodu:
<?php
echo $_GET['name'];
?>