Php&SQL evaluation.

Slides:



Advertisements
Similar presentations
SEN In, Out and Beyond All About… All About... [insert company name]
Advertisements

Home page Property Owners Register Free with
Query Methods (SQL). What is SQL A programming language for databases. SQL (structured Query Language) It allows you add, edit, delete and run queries.
CHAPTER 10 COMMON PROGRAMMING TECHNIQUES. SENDING VALUES TO A SCRIPT Hidden form input type: Depending on the method, $_POST['do'] or $_GET['do'] will.
PHP and MySQL Database. Connecting to MySQL Note: you need to make sure that you have MySQL software properly installed on your computer before you attempt.
MS-Access XP Lesson 2. Input Mask Property 1.Field : Phone No Data Type : Number Input Mask : Character 0 represent a single digit and phone.
The Payroll register. An example PAYROLL REGISTER For the period September 1 to September 15.
Genius online Appraisal Management System 1. Appraiser Configuration Getting Started Appraisal Management let the user to effectively conduct a users.
1 NewSouth HR Inquiries Emergency Contacts. 2 Select New South HR by a left mouse click once on NewSouth HR icon.
Assignment 5 COMP 6620 André Murphy. Conceptual Model This interface is designed to allow Auburn University students and employees to order pizzas through.
Design Aspects. User Type the URL address on the cell phone or web browser Not required to login.
Multiple Tiers in Action
Create your own Website Google places (now Google+ for business) Google place page, is a web page to organize all the world's information for every place.
Advertising Tool – Flash Requirements. Overall Requirements Develop a Flash application (Client and Server side) that combines and serves images on a.
MY SQL Eng: SAHAR. Introduction to SQL What is SQL? When a user wants to get some information from a database file, he can issue a query A query is a.
Deleting and Updating Records in MySQL using PHP Basharat Mahmood, Department of Computer Science,CIIT,Islamabad, Pakistan. 1.
1 Insert, Update and Delete Queries. 2 Return to you Address Book database. Insert a record.
PERFECT CO.,LTD  System Management: make, delete, change user or backup and restore database.  List And Detail: add detail of list.
MySQL + PHP.  Introduction Before you actually start building your database scripts, you must have a database to place information into and read it from.
Mark Dixon Page 1 23 – Web applications: Writing data to Databases using PhP.
Click on Reset your Password / Unlock Your Account
Prepared by: Guided by: Sagar Patel Prof. Chintan sir.
Project Overview Project Name: Client Information Management & Retrieval System M.S. Project : CS University of Bridgeport Student Name: Gandhi Tejas J.
StrEAT – Eat out app eat-ria.appspot.com eat-ria.appspot.com Using Owner Side – Tutorial Video tutorial.
Quick Start Guide: Adding Mobile Equipment Learn How To: 1.Add Equipment Into LOAMS 2.Modify Equipment In LOAMS 3.Delete Equipment In LOAMS (cannot be.
SYST Web Technologies SYST Web Technologies Databases & MySQL.
Database Management System Quiz 1. A company needs to store information about: the employees identified by EmpNo, Name, Salary and Phone; departments.
This PowerBuilder project was for a Dating Service The user may click on a name in the scrolling grid on top and the details are displayed in the freeform.
13. PHP: Insert, View Data. M. Udin Harun Al Rasyid, S.Kom, Ph.D Desain dan Pemrograman.
Updated: July Only users with the Admin agent or the Sales agent role are able to add or update Reseller-of-record information. Note: Users who.
 May be times when we need calculations in a report. ◦ Total of how much a salesman has sold ◦ Report showing total inservice training hours an employee.
Display Page (HTML/CSS)
Step 1of 11 Admin Demonstrations Click Here to Start.
Smart Web. To find a user the in the Directory you can use Last Name, First Name.
9/6/2017 2:01 PM9/6/2017 2:01 PM9/6/2017 2:01 PM1 Restaurant Service A student in.
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
DML – INSERT COMMAND TABLE - EMPLOYEE ID NAME PLACE DOB SALARY 1 ARUN
HOW TO SET UP AUTHORIZED USERS TO VIEW AND PAY YOUR STUDENT BILL
Session 4 PHP & MySQL.
Advanced Navigation Features
e.g. Requesting access for additional SAP transactions or roles
Ohio Child Licensing and Quality System (OCLQS)
To the ETS – Password Reset Online Training Course
BPIA – Approver OATH Token Provisioning Instructions
PRESENTATION FOR WEB LOGIN
Online Food Ordering Script |Online Food Delivery Script |Food ordering Script Phpscriptsmall.
PHP-language, database-programming
ISC440: Web Programming 2 Server-side Scripting PHP 3
User Guide Portman Livewire
>> PHP: Update Query
אבטחת נתונים בסביבת SQL Data Security
Milestone Notification
2 Way Frequency Tables.
Accessing Your MySQL Database from the Web with PHP (Ch 11)
Discovering Computers 2010: Living in a Digital World Chapter 3
MyChoice Benefits - Enrolment
To the ETS – Password Reset Online Training Course
Awareness Training… V 1.1.
Changed Standard Report Categories
SQLPLUS: Oracle SQL Interface
Updating Databases With Open SQL
SQL – Select query Waq to display the employees with no commission.
Topic – select statement with ‘between’, ‘not between’ , ‘like’ operators Objective: 1) Able to use between’, ‘not between’ , ‘like’ operators in ‘select’
Expense Tracking 1.) Enrichment tab > Miscellaneous > Expense Tracking 2.) On the Expense Tracking Listing page, click “Add Expense”
Database SQL.
Academic Coordinator Tutorial
HPE BPIA – Approver OATH Token Provisioning Instructions
Updating Databases With Open SQL
IATA EASY PAY CAIRO, 21-Jul September 2019.
Presentation transcript:

Php&SQL evaluation

Evaluation 1

Database 1. create tables of below database with the relation Database Name: Restaurants Restaurant (ID, name, license , owner) Branch (ID, name, location, manager, phoneNo, restaurantID) 2. insert values 3. select all branches of “pizza hut” 4. delete “domino’s” restaurant ID name location manager phoneNo restaurantID 1 King Fahad Rd Al Murabba Omar 9200 00910 2 Al Imam Ash Shafii Al Manar Ahmed 3 Umar Ibn Abdul Aziz Ar Rabwah Adam 9200 12345 ID name license owner 1 domino’s 12-435 James Monaghan 2 pizza hut 326-556 Dan Carney

PHP

Result

Result

HW 3

Database 1. create tables of below database with the relation Database Name: Company Branch (ID, name, work_hours, phone) Employee (ID, name, sex, salary, BranchID) 2. insert values 3. select all employees of “Second branch” 4. Add 500 to Asma’s salary ID name sex salary BranchID 1 Ahmed Male 1200 2 Asma Female 3000 3 Ali 2300 ID name Work_hours phone 1 First branch 8am-8pm (123) 444-5544 2 Second branch 6am-6pm (567) 888-9870

PHP Write a PHP script that displays all branches in your DB as hyperlinks. Once a user clicks on a branch, all its details (including employees who work in the selected branch) should be displayed in another web page.

Display all branches page

View branch details page