So, I'm working on figuring out how to post data from Jquery to PHP, And as much as I follow the examples I've found on the threads here, I keep getting an "Undefined Index Name" error.
My code thus far for the JQuery side is
<script src="jquery-1.11.1.min.js"></script>
</script>
<script>
$(document).ready(function(){
$("#div2").text('Hey');
$("#div1").load('testFile.txt');
setInterval(function() {
$.ajax({ url: 'script.php' });
$("#div1").load('testFile.txt');}
,100);
});
function sub(){
var msg = $("#name").val();
$.post('chat.php',{'name':"1234"},function(){
$("#div2").load('chat.php');
});
};
</script>
The html forms and buttons I'm using
<div id="div1"></div>
<div id="div2">Um</div>
<form name="myForm" id="myForm" action="" method="POST">
<input type="text" name="name" id="name" size="30" value=""/>
</form>
<button id="submission" onclick="javascript:sub();">Errrr</button>
And the PHP side I'm going to
<?php
echo $_POST['name'];
$myFile = "testFile.txt";
$fh = fopen ($myFile, 'a+') or die("Cannot Open File");
fwrite ($fh, $_POST['name']);
fclose($fh);
?>
I'm about at a loss from where to do. All files are within the same folder and filenames are correct as far as I can find.