View all courses
Read more
The Language Which does not need any prior knowledge of Programming and Easy to learn .Python is Object-oriented ,interpreted and Server side Scripting language . It is mainly used for lynux platform.
In Advance concept After learning Core Python We will use Python to create Desktop Application, Web Application, Sockets Programming , Multithread Programming. Since its An Open source Language its free of Cost
Ruby is server side, dynamic, reflective, object-oriented, general-purpose programming language. Ruby is "an interpreted scripting language for quick and easy object-oriented programming"
Ruby on Rails, or simply Rails, is a web application frameworkwritten in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages.
If you have any confusion then you can ask our experts.Our experts will guide you properly.
We are looking you if you are looking guidance for web design and development. Apply online.
Contact us
Question (1) if the data is send by controller to js using ajax using format json then in js how to access array json data $data['state'] = $state; $data['city'] = $city; $data['streetaddress'] = $streetaddress; $data['pincode'] = $pincode; print_r(json_encode($data)); Answer (1) jQuery.ajax({ type: "POST", dataType: "json", url: baseUrl + 'index/geolocationaccess', data: JSON.stringify(requestData), success: function(response) { document.getElementById("sel1").value = response.state; document.getElementById("street_add").value = response.streetaddress; document.getElementById("pin_code").value = response.pincode; LAT1 = response.LAT1; LNG1 = response.LNG1; LAT2 = response.LAT2; LNG2 = response.LNG2; getChangeAreaForGeolocation(LAT1,LNG1,LAT2,LNG2); } }); Q no 2 if Data is returned by Ajax request is like this (ABOVE) {"pincode_details":{"aadhaar_pincode_id":"1","aadhar_pincode":"231501", "pincode_devision":"Mirzapur","pincode_region":"Allahabad","pincode_area":"Sadar", "pincode_district":"Mirzapur","pincode_circle_name":"Uttar Pradesh", "pincode_remarks":"Local","pincode_circle_code":"UK", "pincode_gst_state_code":"UP"},"status":"success"} Ans To display at front end response.pincode_details['pincode_devision'];