Load PHP File Using Ajax (Without JQUery) – Apache
I have the following Ajax code in an html file: <script type="text/javascript" src="jquery-3.5.0.min.js"> $.ajax({ method: "GET", url:"nba2019_namelist.php", success:function(res) { $("#playerNames").html(res) } }) </script> This is supposed to load a php file (which really just creates a list from a csv),…