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
After Creating Project Setup we will see How value will be passed from Controller to view user.php //Controller ---------- <?php defined('BASEPATH') OR exit('No direct script access allowed'); class User extends CI_Controller { public function index(){ $data['first_name'] = "Rajesh"; $data['address'] = "Faridabad"; $data['qualification'] = "MCA"; $this->load->view('user/user_about'',$data); } } -----------Here we can see that $data is an array in which we have assigned Three Values and later on we have assigned array data to view In view folder application -- view --user --user_about.php In user_about.php you need to write the code to retrieve data <?php echo "Name - ".$first_name; echo "Address - ".$address; echo "Qualification - ".$qualification; ?>