Skip to content

Instantly share code, notes, and snippets.

@mirsahib
Last active October 25, 2023 19:25
Show Gist options
  • Save mirsahib/b39516d473099766c0159b027fb3b5bd to your computer and use it in GitHub Desktop.
Save mirsahib/b39516d473099766c0159b027fb3b5bd to your computer and use it in GitHub Desktop.
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
@charlotteea7
Copy link

I'm just starting to learn js

@charlotteea7
Copy link

charlotteea7 commented Oct 16, 2023

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