Chapter 14 Managing Projects. - ppt download: Management Information Systems Chapter 14: Managing Projects LEARNING OBJECTIVES Identify and describe the objectives of project management and why it is so essential in developing information systems. Compare methods for selecting and evaluating information systems projects and methods for aligning them with the firm’s business goals. Describe...
Thursday, August 13, 2020
Saturday, June 13, 2020
Monday, November 26, 2018
Feasibility Study PDF
Conducting a feasibility study is one of the key activities within the project initiation phase.It aims to analyze and justify the project in terms of technical feasibility, business viability, and cost-effectiveness.
● A feasibility study decides whether or not the proposed system...
Software Testing
Test and integration
– Delivers a system that meets user and organizational needs on time and within budget
Always test your application!● Test it yourself● Test it on other computers and environments● Make sure others test your application
Test Environment?● A testing environment is...
Traditional SDLC : Prototype, V model

Click the image to download the Sli...
Sunday, November 25, 2018
Tuesday, February 7, 2017
Thursday, September 8, 2016
Codeigniter tutorial 7
Codeigniter and MySQL
Codeigniter by default assumes that we don't need databases.
So we need to configure the database connection.
In config/autoload.php we add database library
$autoload['libraries'] = array('database');
Then in config/database.php we do the configurations with the details of database and hosts
$db['default'] = array( 'dsn' => '', ...
Thursday, July 14, 2016
Remove index.php using .htaccess : Codeigniter tutorial 6
To remove 'index.php' from CodeIgniter URL, we need to make some changes in the configuration file.
Step 1
open application/config/config.php
search for the line
$config['index_page'] = "index.php";
and remove 'index.php' from that line.
($config['index_page'] = "";)
Step 2
Create a new file inside Codeigniter folder and save it as '.htaccess'
paste the following code...
Thursday, July 7, 2016
Codeigniter tutorial 5
I have posted tutorials on, working with Controller and View files in the MVC Pattern Using Codeigniter.
Now I go through with Model.
In the application folder, we have a sub-folder model
Create a new file new_model.php in model folder.
<?php
Class New_model extends CI_Model{
public...
Friday, June 24, 2016
Codeigniter tutorial 4
Data passing from controller to view
I posted CodeIgniter URL Routing in the controller, Special methods, and Controller and View files earlier.
Now we see, how to pass some data to view files from controller
My view file first_view.php
<html>
<head>
<title>View</title>
</head>
<body>
...