Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 408 Weeks Ago, 6 Days Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Management Posted 07 Jul 2017 My Price 13.00

An ideal assignment

Assignment

The assignment will be chosen by the individual student with my approval. An ideal assignment will be one which involves at least four entity sets, but not too many since there will be critical time pressure to complete the assignment. Also, we hope for interesting relationships (many-many, many-one, one-one, ISA, weak entity sets, etc.) between the entity sets in order to lead naturally to the use of the major topics covered in the course. For students with considerable experience with practical database systems, I will encourage you to come up with ideas for alternative kinds of assignments that will provide you with a substantial learning experience.

The assignment will give you an opportunity to exercise the techniques and tools you learn in this class. The goal is not to develop a complete system, but rather to develop a prototype that illustrates the major features of the system, were it to be completed. We want the parts that are done to be complete and impressive. The major requirements of the assignment will be a careful and complete ER model, the relational database tables with sample data, a set of interesting SQL queries, and finally a user-friendly interface.

Important:

 

Please write down the keys for each relation, the functional dependencies for each relation, and you must guarantee all the relations are 3NF or above.

 

Here are some topics that can be used:

  • Taxi Company Database
  • Police Force Database
  • Hospital
  • Airport Records
  • Apartment Complex
  • Book Publisher
  • University

Attention:

 

Sample files

    1. Table: contacts(first, last, phone, mobile, fax, email, website)
    2. query.php (perform a query)

 

$username="username";

$password="password";

$database="username";

 

mysql_connect(localhost,$username,$password);

@mysql_select_db($database) or die( "Unable to select database");

$query="SELECT * FROM contacts";

$result=mysql_query($query);

 

$num=mysql_numrows($result);

 

mysql_close();

 

echo "Database Output

";

 

$i=0;

while ($i

 

$first=mysql_result($result,$i,"first");

$last=mysql_result($result,$i,"last");

$phone=mysql_result($result,$i,"phone");

$mobile=mysql_result($result,$i,"mobile");

$fax=mysql_result($result,$i,"fax");

$email=mysql_result($result,$i,"email");

$web=mysql_result($result,$i,"web");

 

echo "$first $last
Phone: $phone
Mobile: $mobile
Fax: $fax
E-mail: $email
Web: $web



";

 

 

$i++;

}

 

?>

    1. test.html and insert.php

 

 

First Name: 

Last Name: 

Phone: 

Mobile: 

Fax: 

E-mail: 

Web: 

 

 

 

 

$username="username";

$password="password";

$database="username";

 

$first=$_POST['first'];

$last=$_POST['last'];

$phone=$_POST['phone'];

$mobile=$_POST['mobile'];

$fax=$_POST['fax'];

$email=$_POST['email'];

$web=$_POST['web'];

 

mysql_connect(localhost,$username,$password);

@mysql_select_db($database) or die( "Unable to select database");

 

$query = "INSERT INTO contacts VALUES ('$first','$last','$phone','$mobile','$fax','$email','$web')";

mysql_query($query);

 

mysql_close();

?>

Answers

(5)
Status NEW Posted 07 Jul 2017 03:07 PM My Price 13.00

Hel-----------lo -----------Sir-----------/Ma-----------dam----------- Â-----------  -----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------acq-----------uis-----------iti-----------on -----------of -----------my -----------pos-----------ted----------- so-----------lut-----------ion-----------. P-----------lea-----------se -----------pin-----------g m-----------e o-----------n c-----------hat----------- I -----------am -----------onl-----------ine----------- or----------- in-----------box----------- me----------- a -----------mes-----------sag-----------e I----------- wi-----------ll

Not Rated(0)