Last active
October 25, 2023 19:25
-
-
Save mirsahib/b39516d473099766c0159b027fb3b5bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Student = new Array(); | |
$(document).ready(function(){ | |
$.ajax({ | |
url: "http://localhost/public_html/Final_project/student_2017.php", | |
method:"GET", | |
success:function (data) { | |
console.log(data); | |
for(i in data){ | |
Student.push(data[i]); | |
} | |
} | |
}) | |
}) | |
// how to access the element of Student array from here | |
//console.log(Student[0].Uni_name) this produce error |
I always dreamed of learning a programming language. I immediately understood that it would not be easy. During my sophomore year in college, I decided to start with phyton. This turned out to be even more difficult, I could not combine studying with teaching and often asked write my essay for me for college, I found https://ca.edubirdie.com/write-my-essay-for-me for this. So if you are doing something else at the same time, know that it will be a very difficult process. But it's different for everyone.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm just starting to learn js