/Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 1 of 6

Size: px
Start display at page:

Download "/Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 1 of 6"

Transcription

1 /Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 1 of COMMON FUNCTIONS for Mock-up Library Website (LIBR 246 PHP/MySQL). Written by Erica Krimmel, Fall <?php function connectdatabase($server) if ($server == 'localhost')!! $db = mysql_connect('localhost','root','');!! print $db;!! if (!$db)!!! print "<h1>unable to Connect to MySQL</h1>";!! $dbname = 'test';!! $btest = mysql_select_db($dbname);!! if (!$btest)!!! print "<h1>unable to Select the Database</h1>"; else!! require('../dbtest.php');!! $host = 'localhost';!! $userid = '7admin7';!! $password ='7dosql7';!! $db = mysql_perry_pconnect($host, $userid, $password);!! if (!$db)!! print "<h1>unable to Connect to MySQL</h1>";!! exit;!! $dbname ='7phpmysql7';!! $dbtest= mysql_perry_select_db($dbname);!! if (!$dbtest)!!! print "<h1>unable to Select the Database</h1>";

2 /Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 2 of ! return $db; function selectresults($statement, $db)! $output = "";! $outputarray = array();! $server = getserver();! $db = connectdatabase($server);! if ($db)!! $result = mysql_query($statement);!! if (!$result)!!! $output.= "ERROR";!!! $output.= "<br /><font color=red>mysql No: ".mysql_errno();!!! $output.= "<br />MySQL Error: ".mysql_error();!!! $output.= "<br />SQL Statement: ".$statement;!!! $output.= "<br />MySQL Affected Rows: ".mysql_affected_rows();!!! "</font><br />";!!! array_push($outputarray, $output); else!!! $numresults = mysql_num_rows($result);!!! array_push($outputarray, $numresults);!!! for ($i = 0; $i < $numresults; $i++)!!!!! $row = mysql_fetch_array($result);!!!! array_push($outputarray, $row);!!!! if ($numresults == 0)!!!!! $outputarray = 'noresults';! else!! array_push($outputarray, 'ERROR-No DB Connection');

3 /Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 3 of ! return $outputarray; function insertpatron($db, $myfirstname, $mylastname, $my , $mybirth, $myresidence, $myuserid, $mypassword)! $server = getserver();! $db = connectdatabase($server);! $statement!= "insert into k2083_patron (firstname, lastname, , birthyear,! city, userid, password) ";! $statement.= "values (";! $statement.= "'".$myfirstname."', '".$mylastname."', '".$my ."', '".$mybirth."! '".$myresidence."', '".$myuserid."', '".$mypassword."'";! $statement.= ")";! $result = mysql_query($statement);! //PRINT CONFIRMATION! if ($result)!!! $currentyear = date('y');!!! $age = $currentyear - $mybirth;!!! if (0 <= $age && $age <= 15)!!!!! $section = 'Children';!!!! if (16 <= $age && $age <= 54)!!!!! $section = 'Adult';!!!! if (55 <= $age)!!!!! $section = 'Senior';!!!! print"<h2>thank you for registering!</h2>";!!! print "<p><b>name:</b> ".$myfirstname;!!! print " ".$mylastname;!!! print "<br /><b>user ID:</b> ".$myuserid;!!! print "<br /><b>password:</b> ".$mypassword;!!! print "<br /><b> </b> ".$my ;!!! print "<br /><b>city:</b> ".$myresidence;!!! print "<br /><b>section</b>: ".$section;!!! return 'patron_id'; else! $errno = mysql_errno($db);! if ($errno == '1062')

4 /Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 4 of !!! print "<br>patron is already registered in database: <br />".$mylastname.",!!! ".$myfirstname; else!!! print("<h4>mysql No: ".mysql_errno($result)."</h4>");!!! print("<h4>mysql Error: ".mysql_error($result)."</h4>");!!! print("<h4>sql: ".$statement."</h4>");!!! print("<h4>mysql Affected Rows: ".mysql_affected_rows($result)."</h4>");!! return 'NotAdded'; function displaypage($myfirstname, $mylastname, $my , $mybirth, $myresidence)!! //DETERMINE USERS AGE AND SECTION!!! $currentyear = date('y');!!! $age = $currentyear - $mybirth;!!! if (0 <= $age && $age <= 15)!!!!! $section = 'Children';!!!! if (16 <= $age && $age <= 54)!!!!! $section = 'Adult';!!!! if (55 <= $age)!!!!! $section = 'Senior';!!! //PRINT ERROR MESSAGES OR CONFIRMATION!!! print"<h2>thank you for registering!</h2>";!!! print "<p>name: ".$myfirstname.' '.$mylastname;!!! print "<br /> ".$my ;!!! print "<br />City: ".$myresidence;!!! print "<br />Section: ".$section; function iduresults($statement, $db)! $output = "";! $outputarray = array();! if ($db)!! $result = mysql_query($statement);

5 /Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 5 of !! if (!$result)!! $errno = mysql_errno($db);!! if ($errno == '1062')!!!!! $output.= "ERROR";!!!! $output.= "<br />Userid is already in system";! else!!!! $output.= "ERROR";!!!! $output.= "<br /><font color=red>mysql No: ".mysql_errno();!!!! $output.= "<br />MySQL Error: ".mysql_error();!!!! $output.= "<br />SQL Statement: ".$statement;!!!! $output.= "<br />MySQL Affected Rows: ".mysql_affected_rows().!!!! "</font><br />";! else!!! $output = mysql_affected_rows(); else!! $output = 'ERROR-No DB Connection';! return $output; function getserver()!! global $server;!! $server = $_SERVER['SERVER_NAME'];!!! if ($server == 'ntowl.com')!!!!! $server = 'Practice Area';! else!!!! $server = 'localhost';!!! return $server; function dovalidation($myfirstname, $mylastname, $my , $mybirth, $myresidence, $myuserid, $mypassword)

6 /Users/ekrimmel/Desktop/_potential/Zex site/assignment_8_common_functions.php Page 6 of !! if (empty($myfirstname))!!! $errmsg.="<br />Error: You must enter a First Name.";!! if (empty($mylastname))!!! $errmsg.="<br />Error: You must enter a Last Name.";!! if (empty($my ))!!! $errmsg.="<br />Error: You must enter your .";!! if (empty($mybirth))!!! $errmsg.="<br />Error: You must enter your Birth Year.";!! if (!is_numeric($mybirth) strlen($mybirth)!= 4)!!! $errmsg.="<br />Error: Your Birth Year must be numeric and four digits.";!! if ($myresidence == '-')!!! $errmsg.= "<br />Error: You must select a City.";!! if (empty($myuserid) strlen($myuserid) > 10)!!! $errmsg.= "<br />Error: You must choose a user ID that is 10 characters!!! or less.";!! if (empty($mypassword) strlen($mypassword) > 10)!!! $errmsg.= "<br />Error: You must choose a password that is 10 characters!!! or less.";! return $errmsg;?>

Networks and Web for Health Informatics (HINF 6220) Tutorial 13 : PHP 29 Oct 2015

Networks and Web for Health Informatics (HINF 6220) Tutorial 13 : PHP 29 Oct 2015 Networks and Web for Health Informatics (HINF 6220) Tutorial 13 : PHP 29 Oct 2015 PHP Arrays o Arrays are single variables that store multiple values at the same time! o Consider having a list of values

More information

PHP Development - Introduction

PHP Development - Introduction PHP Development - Introduction Php Hypertext Processor PHP stands for PHP: Hypertext Preprocessor PHP is a server-side scripting language, like ASP PHP scripts are executed on the server PHP supports many

More information

Chapter. Accessing MySQL Databases Using PHP

Chapter. Accessing MySQL Databases Using PHP Chapter 12 Accessing MySQL Databases Using PHP 150 Essential PHP fast Introduction In the previous chapter we considered how to create databases using MySQL. While this is useful, it does not enable us

More information

Chapter 6 Part2: Manipulating MySQL Databases with PHP

Chapter 6 Part2: Manipulating MySQL Databases with PHP IT215 Web Programming 1 Chapter 6 Part2: Manipulating MySQL Databases with PHP Jakkrit TeCho, Ph.D. Business Information Technology (BIT), Maejo University Phrae Campus Objectives In this chapter, you

More information

PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008.

PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008. PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008. Outline. How cookies work. Cookies in PHP. Sessions. Databases. Cookies. Sometimes it is useful to remember a client when it comes

More information

SQL stands for Structured Query Language. SQL lets you access and manipulate databases

SQL stands for Structured Query Language. SQL lets you access and manipulate databases CMPSC 117: WEB DEVELOPMENT SQL stands for Structured Query Language SQL lets you access and manipulate databases SQL is an ANSI (American National Standards Institute) standard 1 SQL can execute queries

More information

Sample Relational Database

Sample Relational Database Sample Relational Database Student: Alexander Rudolf Gruber MNr: 9812938 Table of Contents 1 Database Schema:... 2 2 Practical implementation of the database with mysql... 3 3 Inserting Test Data with

More information

MySQL: Access Via PHP

MySQL: Access Via PHP MySQL: Access Via PHP CISC 282 November 15, 2017 phpmyadmin: Login http://cisc282.caslab. queensu.ca/phpmyadmin/ Use your NetID and CISC 282 password to log in 2 phpmyadmin: Select DB Clicking on this

More information

COMP519: Web Programming Autumn 2015

COMP519: Web Programming Autumn 2015 COMP519: Web Programming Autumn 2015 In the next lectures you will learn What is SQL How to access mysql database How to create a basic mysql database How to use some basic queries How to use PHP and mysql

More information

IELM 511 Information Systems Design Labs 5 and 6. DB creation and Population

IELM 511 Information Systems Design Labs 5 and 6. DB creation and Population IELM 511 Information Systems Design Labs 5 and 6. DB creation and Population In this lab, your objective is to learn the basics of creating and managing a DB system. One way to interact with the DBMS (MySQL)

More information

Web Programming. Dr Walid M. Aly. Lecture 10 PHP. lec10. Web Programming CS433/CS614 22:32. Dr Walid M. Aly

Web Programming. Dr Walid M. Aly. Lecture 10 PHP. lec10. Web Programming CS433/CS614 22:32. Dr Walid M. Aly Web Programming Lecture 10 PHP 1 Purpose of Server-Side Scripting database access Web page can serve as front-end to a database Ømake requests from browser, Øpassed on to Web server, Øcalls a program to

More information

A340 Laboratory Session #17

A340 Laboratory Session #17 A340 Laboratory Session #17 LAB GOALS Interacting with MySQL PHP Classes and Objects (Constructors, Destructors, Instantiation, public, private, protected,..) Step 1: Start with creating a simple database

More information

Database-Aware Fault Localization for Dynamic Web Applications

Database-Aware Fault Localization for Dynamic Web Applications Database-Aware Fault Localization for Dynamic Web Applications Hung Viet Nguyen, Hoan Anh Nguyen, Tung Thanh Nguyen, Tien N. Nguyen Iowa State University ICSM 2013 Sep 22-28, 2013 Eindhoven, The Netherlands

More information

Databases (MariaDB/MySQL) CS401, Fall 2015

Databases (MariaDB/MySQL) CS401, Fall 2015 Databases (MariaDB/MySQL) CS401, Fall 2015 Database Basics Relational Database Method of structuring data as tables associated to each other by shared attributes. Tables (kind of like a Java class) have

More information

Sample Relational Database Modern Information Systems

Sample Relational Database Modern Information Systems Sample Relational Database Modern Information Systems WT 20xx/20xx Name Matriculation# audiobook-library (idea from audiobook-library Graz-Mariahilf) Table of Contents: Database Schema:... 2 Practical

More information

AN INTRODUCTION TO WEB PROGRAMMING. Dr. Hossein Hakimzadeh Department of Computer and Information Sciences Indiana University South Bend, IN

AN INTRODUCTION TO WEB PROGRAMMING. Dr. Hossein Hakimzadeh Department of Computer and Information Sciences Indiana University South Bend, IN AN INTRODUCTION TO WEB PROGRAMMING Dr. Hossein Hakimzadeh Department of Computer and Information Sciences Indiana University South Bend, IN HISTORY Developed by Michael Widenius. Initially release in 1995.

More information

What is MySQL? [Document provides the fundamental operations of PHP-MySQL connectivity]

What is MySQL? [Document provides the fundamental operations of PHP-MySQL connectivity] What is MySQL? [Document provides the fundamental operations of PHP-MySQL connectivity] MySQL is a database. A database defines a structure for storing information. In a database, there are tables. Just

More information

Understanding Basic SQL Injection

Understanding Basic SQL Injection Understanding Basic SQL Injection SQL injection (also known as SQLI) is a code injection technique that occurs if the user-defined input data is not correctly filtered or sanitized of the string literal

More information

PHP Introduction. Some info on MySQL which we will cover in the next workshop...

PHP Introduction. Some info on MySQL which we will cover in the next workshop... PHP and MYSQL PHP Introduction PHP is a recursive acronym for PHP: Hypertext Preprocessor -- It is a widely-used open source general-purpose serverside scripting language that is especially suited for

More information

Building an E-mini Trading System Using PHP and Advanced MySQL Queries ( ) - Contributed by Codex-M

Building an E-mini Trading System Using PHP and Advanced MySQL Queries ( ) - Contributed by Codex-M Building an E-mini Trading System Using PHP and Advanced MySQL Queries (2009-11-10) - Contributed by Codex-M This article shows illustrative examples of how PHP and some advanced MySQL queries can be used

More information

Database Connectivity using PHP Some Points to Remember:

Database Connectivity using PHP Some Points to Remember: Database Connectivity using PHP Some Points to Remember: 1. PHP has a boolean datatype which can have 2 values: true or false. However, in PHP, the number 0 (zero) is also considered as equivalent to False.

More information

By the end of this section of the practical, the students should be able to:

By the end of this section of the practical, the students should be able to: By the end of this section of the practical, the students should be able to: Connecting to a MySQL database in PHP with the mysql_connect() and mysql_select_db() functions Trapping and displaying database

More information

Adding A PHP+MySQL Hit Counter to your Website

Adding A PHP+MySQL Hit Counter to your Website Adding A PHP+MySQL Hit Counter to your Website Setting up MySQL First off, decide what you want to keep track of. In this case, let s commit to tracking total number of hits on each of a number of web

More information

itexamdump 최고이자최신인 IT 인증시험덤프 일년무료업데이트서비스제공

itexamdump 최고이자최신인 IT 인증시험덤프  일년무료업데이트서비스제공 itexamdump 최고이자최신인 IT 인증시험덤프 http://www.itexamdump.com 일년무료업데이트서비스제공 Exam : 1z1-882 Title : Oracle Certified Professional, MySQL 5.6 Developer Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-882

More information

PHP: Databases and Classes. CS174. Chris Pollett. Sep 29, 2008.

PHP: Databases and Classes. CS174. Chris Pollett. Sep 29, 2008. PHP: Databases and Classes. CS174. Chris Pollett. Sep 29, 2008. Outline. Databases. Classes. Connecting to MySQL from PHP. To start a connect to a MySQL database one can issue the command: $db = mysql_connect();

More information

Server side scripting and databases

Server side scripting and databases Example table Server side scripting and databases student How Web Applications interact with server side databases - part 2 student kuid lastname money char char int student table Connecting and using

More information

Distributed Databases and Remote Access to a Database

Distributed Databases and Remote Access to a Database Distributed Databases and Remote Access to a Database Table of Contents 1 Distributed Databases... 2 2 Internet (Overview)... 4 3 Internet-Based Applications... 9 3.1 Server-Side Scripting... 9 3.2 Client-Side

More information

Hello everyone! Page 1. Your folder should look like this. To start with Run your XAMPP app and start your Apache and MySQL.

Hello everyone! Page 1. Your folder should look like this. To start with Run your XAMPP app and start your Apache and MySQL. Hello everyone! Welcome to our PHP + MySQL (Easy to learn) E.T.L. free online course Hope you have installed your XAMPP? And you have created your forms inside the studio file in the htdocs folder using

More information

MYSQL DATABASE ACCESS WITH PHP

MYSQL DATABASE ACCESS WITH PHP MYSQL DATABASE ACCESS WITH PHP Fall 2010 CSCI 2910 Server-Side Web Programming Typical web application interaction Database Server 3 tiered architecture Security in this interaction is critical Web Server

More information

CSE 127: Computer Security SQL Injection. Vector Li

CSE 127: Computer Security SQL Injection. Vector Li CSE 127: Computer Security SQL Injection Vector Li November 14, 2017 A Magic Trick The functional specification only allowed seeing one user s posts at a time Current user s posts on view.php without

More information

COM1004 Web and Internet Technology

COM1004 Web and Internet Technology COM1004 Web and Internet Technology When a user submits a web form, how do we save the information to a database? How do we retrieve that data later? ID NAME EMAIL MESSAGE TIMESTAMP 1 Mike mike@dcs Hi

More information

BSc (Hons) Web Technologies. Examinations for 2017 / Semester 1

BSc (Hons) Web Technologies. Examinations for 2017 / Semester 1 BSc (Hons) Web Technologies Cohort: BWT/16A/FT Examinations for 2017 / Semester 1 MODULE: Open Source Web Technologies MODULE CODE: WAT 2108C Duration: 2 Hours 15 minutes Instructions to Candidates: 1.

More information

Importing to WIRED Contact From a Database File. Reference Guide

Importing to WIRED Contact From a Database File. Reference Guide Importing to WIRED Contact From a Database File Reference Guide Table of Contents Preparing the Database table for Import... 2 Locating the Field Names for the Import... 2 Importing the File to WiredContact...

More information

Web Systems Nov. 2, 2017

Web Systems Nov. 2, 2017 Web Systems Nov. 2, 2017 Topics of Discussion Using MySQL as a Calculator Command Line: Create a Database, a Table, Insert Values into Table, Query Database Using PhP API to Interact with MySQL o Check_connection.php

More information

If you do not specify any custom parameters, we will deliver the message using the default names.

If you do not specify any custom parameters, we will deliver the message using the default names. Inbound SMS to UK landline numbers API HTTP GET/POST variables If you choose to have the messages delivered by HTTP, you may either use our standard parameters, or create a custom format for compatibility

More information

More loops. Control structures / flow control. while loops. Loops / Iteration / doing things over and over and over and over...

More loops. Control structures / flow control. while loops. Loops / Iteration / doing things over and over and over and over... Control structures / flow control More loops while loops if... else Switch for loops while... do.. do... while... Much of this material is explained in PHP programming 2nd Ed. Chap 2 Control structures

More information

Princess Nourah bint Abdulrahman University. Computer Sciences Department

Princess Nourah bint Abdulrahman University. Computer Sciences Department Princess Nourah bint Abdulrahman University Computer Sciences Department 1 And use http://www.w3schools.com/ PHP Part 3 Objectives Creating a new MySQL Database using Create & Check connection with Database

More information

Create Basic Databases and Integrate with a Website Lesson 3

Create Basic Databases and Integrate with a Website Lesson 3 Create Basic Databases and Integrate with a Website Lesson 3 Combining PHP and MySQL This lesson presumes you have covered the basics of PHP as well as working with MySQL. Now you re ready to make the

More information

HOW TO UPGRADE YOUR EXISTING P6 PRO DEPLOYMENT TO VERSION 8.3

HOW TO UPGRADE YOUR EXISTING P6 PRO DEPLOYMENT TO VERSION 8.3 HOW TO UPGRADE YOUR EXISTING P6 PRO DEPLOYMENT TO VERSION 8.3 P6 Pro 8.3 Getting the Software Who can download? Anyone with P6 V8.2 and current Maintenance Anyone else can migrate (call your local Rep)

More information

How to bulk upload users

How to bulk upload users City & Guilds How to bulk upload users How to bulk upload users The purpose of this document is to guide a user how to bulk upload learners and tutors onto SmartScreen. 2014 City and Guilds of London Institute.

More information

PHP. How Web Applications interact with server side databases CRUD. Connecting and using mysql from PHP PHP provides many mysql specific functions

PHP. How Web Applications interact with server side databases CRUD. Connecting and using mysql from PHP PHP provides many mysql specific functions PHP How Web Applications interact with server side databases CRUD Connecting and using mysql from PHP PHP provides many mysql specific functions mysql_connect mysql_select_db mysql_query mysql_fetch_array

More information

Mount Saint Mary College, Newburgh, NY Internet Programming III - CIT310

Mount Saint Mary College, Newburgh, NY Internet Programming III - CIT310 Warm up mini-lab Lab 1 - Functions Type in the following function definition and calls to the function. Test it and understand it. function myprint($str= No String Supplied ) // the argument is optional

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

CPSC 421 Database Management Systems. Lecture 10: Embedded SQL

CPSC 421 Database Management Systems. Lecture 10: Embedded SQL CPSC 421 Database Management Systems Lecture 10: Embedded SQL * Some material adapted from R. Ramakrishnan, L. Delcambre, and B. Ludaescher Today s Agenda Quiz Project Part 2 Embedded SQL DDL and DML Notes:

More information

Hello, World! EMT1111: Logic and Problem Solving Fall 2016 Dr. Mendoza

Hello, World! EMT1111: Logic and Problem Solving Fall 2016 Dr. Mendoza Hello, World! EMT1111: Logic and Problem Solving Fall 2016 Dr. Mendoza LESSON 4 (Labs): Python Overview IV SIMPLE PYTHON PROGRAMS II Lab Assignment 1 (poem2.py) Put the blocks below into the correct order

More information

Development Technologies. Agenda: phpmyadmin 2/20/2016. phpmyadmin MySQLi. Before you can put your data into a table, that table should exist.

Development Technologies. Agenda: phpmyadmin 2/20/2016. phpmyadmin MySQLi. Before you can put your data into a table, that table should exist. CIT 736: Internet and Web Development Technologies Lecture 10 Dr. Lupiana, DM FCIM, Institute of Finance Management Semester 1, 2016 Agenda: phpmyadmin MySQLi phpmyadmin Before you can put your data into

More information

IS 2150 / TEL 2810 Introduction to Security

IS 2150 / TEL 2810 Introduction to Security IS 2150 / TEL 2810 Introduction to Security James Joshi Professor, SIS Lecture 15 April 20, 2016 SQL Injection Cross-Site Scripting 1 Goals Overview SQL Injection Attacks Cross-Site Scripting Attacks Some

More information

CHAPTER 10. Connecting to Databases within PHP

CHAPTER 10. Connecting to Databases within PHP CHAPTER 10 Connecting to Databases within PHP CHAPTER OBJECTIVES Get a connection to a MySQL database from within PHP Use a particular database Send a query to the database Parse the query results Check

More information

the Data Drive IN THIS CHAPTER Good Things Come in Free Packages

the Data Drive IN THIS CHAPTER Good Things Come in Free Packages c h a p t e r 7 Let the Data Drive IN THIS CHAPTER Good Things Come in Free Packages New Functions Installing MySQL Setting up a Simple Database Basic SQL Queries Putting Content into a Database Using

More information

Download and Installation Instructions: After WAMP Server download start the installation:

Download and Installation Instructions: After WAMP Server download start the installation: SET UP Instruction to Set Up a WAMP SERVER with MySQL and to Create a Database in My SQL and Connect from your PHP Script Download WAMP Server V 3.0 or higher from: https://sourceforge.net/projects/wampserver/

More information

CMSC 330: Organization of Programming Languages. Markup & Query Languages

CMSC 330: Organization of Programming Languages. Markup & Query Languages CMSC 330: Organization of Programming Languages Markup & Query Languages Other Language Types Markup languages Set of annotations to text Query languages Make queries to databases & information systems

More information

CMSC 330: Organization of Programming Languages

CMSC 330: Organization of Programming Languages CMSC 330: Organization of Programming Languages Markup & Query Languages Other Language Types Markup languages Set of annotations to text Query languages Make queries to databases & information systems

More information

Working with Databases and Java

Working with Databases and Java Working with Databases and Java Pedro Contreras Department of Computer Science Royal Holloway, University of London January 30, 2008 Outline Introduction to relational databases Introduction to Structured

More information

Professional PHP for working with MySQL

Professional PHP for working with MySQL Chapter 19 Professional PHP for working with MySQL PDO (PHP Data Objects) Pros Is included with PHP 5.1 and later and available for 5.0. Provides an object-oriented interface. Provides a consistent interface

More information

VS2010 C# Programming - DB intro 1

VS2010 C# Programming - DB intro 1 VS2010 C# Programming - DB intro 1 Topics Database Relational - linked tables SQL ADO.NET objects Referencing Data Using the Wizard Displaying data 1 VS2010 C# Programming - DB intro 2 Database A collection

More information

ITC 250/CPET 499 Web Systems Nov. 3, 2016 Managing MySQL Database Part 3 of 3

ITC 250/CPET 499 Web Systems Nov. 3, 2016 Managing MySQL Database Part 3 of 3 ITC 250/CPET 499 Web Systems Nov. 3, 2016 Managing MySQL Database Part 3 of 3 MySQL Topics of Discussion More Command-Line Interface phpmyadmin o config.inc.php file : defineing a connection to the MySQL

More information

Using PHP with MYSQL

Using PHP with MYSQL Using PHP with MYSQL PHP & MYSQL So far you've learned the theory behind relational databases and worked directly with MySQL through the mysql command-line tool. Now it's time to get your PHP scripts talking

More information

The BIRO software. 1st EUBIROD Annual Meeting, Dasman Centre, Kuwait City

The BIRO software. 1st EUBIROD Annual Meeting, Dasman Centre, Kuwait City The BIRO software 1st EUBIROD Annual Meeting, Dasman Centre, Kuwait City BIROBox BIRO Box: a Graphical User Interface to configure and run all BIRO software tools for the local BIRO system XML files BIROBox

More information

APLIKACJE INTERNETOWE 8 PHP WYKORZYSTANIE BAZY DANYCH MYSQL

APLIKACJE INTERNETOWE 8 PHP WYKORZYSTANIE BAZY DANYCH MYSQL APLIKACJE INTERNETOWE 8 PHP WYKORZYSTANIE BAZY DANYCH MYSQL PLAN PREZENTACJI Bazy danych w PHP Połączenie z bazą danych Zamknięcie połączenie Tworzenie bazy danych Tworzenie tabeli Operacje na tabelach

More information

Du Pont Technology Grant Report: Using MySQL and PHP to do Dynamic Web Page Development

Du Pont Technology Grant Report: Using MySQL and PHP to do Dynamic Web Page Development Du Pont Technology Grant Report: Using MySQL and PHP to do Dynamic Web Page Development Fall 2001 to Spring 2002 Jay Baltisberger Introduction The purpose of this project was for me to learn to use Apache,

More information

Jackson State University Department of Computer Science CSC / Advanced Information Security Spring 2013 Lab Project # 3

Jackson State University Department of Computer Science CSC / Advanced Information Security Spring 2013 Lab Project # 3 Jackson State University Department of Computer Science CSC 439-01/539-02 Advanced Information Security Spring 2013 Lab Project # 3 Use of CAPTCHA (Image Identification Strategy) to Prevent XSRF Attacks

More information

CTF. I-Bank. Logical Flaws in a PHP banking application. FluxReiners

CTF. I-Bank. Logical Flaws in a PHP banking application. FluxReiners Logical Flaws in a PHP banking application FluxReiners Final CTF phase: Exploitation 2/38 Setup: one bank per team with the same banking app 3 bank accounts per bank SSH access to own bank server (incl.

More information

How to install PHP/MySQL on Mac OS 10.5

How to install PHP/MySQL on Mac OS 10.5 How to install PHP/MySQL on Mac OS 10.5 For web development purposes, the ability to test your pages on your local machine can be very valuable. This tutorial shows you how you can enable PHP and MySQL

More information

PHP INTERVIEW QUESTION-ANSWERS

PHP INTERVIEW QUESTION-ANSWERS 1. What is PHP? PHP (recursive acronym for PHP: Hypertext Preprocessor) is the most widely used open source scripting language, majorly used for web-development and application development and can be embedded

More information

Databases and SQL. Lecture outline. CSE 190 M (Web Programming) Spring 2008 University of Washington

Databases and SQL. Lecture outline. CSE 190 M (Web Programming) Spring 2008 University of Washington Databases and SQL CSE 190 M (Web Programming) Spring 2008 University of Washington References: SQL syntax reference, w3schools tutorial Except where otherwise noted, the contents of this presentation are

More information

Advanced Web Programming Practice Exam II

Advanced Web Programming Practice Exam II Advanced Web Programming Practice Exam II Name: 12 December 2017 This is a closed book exam. You may use one sheet of notes (8.5X11in, front only) but cannot use any other references or electronic device.

More information

COMS 469: Interactive Media II

COMS 469: Interactive Media II COMS 469: Interactive Media II Agenda Review Content Management (cont.) Replace all txt files with database tables Expand PHP/MySQL SELECT, UPDATE & DELETE queries Permit full editorial control over content

More information

Greetings West Ada Comp Sci TAC & Friends,

Greetings West Ada Comp Sci TAC & Friends, Greetings West Ada Comp Sci TAC & Friends, Thank you for taking time from your busy schedules to attend our Technical Advisors Meeting (TAC) last Wed: Two teachers, five industry reps. Your inputs directly

More information

Building Dynamic Websites. Greg Loumeau

Building Dynamic Websites. Greg Loumeau Building Dynamic Websites Greg Loumeau The Awesome Knowledge You Will Acquire If You Can Live Without Social Media for Twenty-Five Minutes what my ferret ate for breakfast The difference between Static

More information

FACILITIES > MY FACILITY Managing Accounts: Facilities For Account Administrators and Administrators

FACILITIES > MY FACILITY Managing Accounts: Facilities For Account Administrators and Administrators FACILITIES > MY FACILITY Managing Accounts: Facilities 4. My Facility. Notes and Additional Information The facility's Account Administrator or users with the permission level of administrator may edit/add

More information

PHP MySQLi Class Documentation

PHP MySQLi Class Documentation PHP MySQLi Class Documentation Release 1.0 Read the Docs Sep 16, 2017 Contents 1 Installation 3 2 Initialization 5 2.1 Advanced initialization:......................................... 5 3 Insert Query

More information

CSC 3300 Homework 3 Security & Languages

CSC 3300 Homework 3 Security & Languages CSC 3300 Homework 3 Security & Languages Description Homework 3 has two parts. Part 1 is an exercise in database security. In particular, Part 1 has practice problems in which your will add constraints

More information

Systems Programming & Scripting

Systems Programming & Scripting Systems Programming & Scripting Lecture 19: Database Support Sys Prog & Scripting - HW Univ 1 Typical Structure of a Web Application Client Internet Web Server Application Server Database Server Third

More information

MULTIMEDIA AND WEB TECHNOLOGY

MULTIMEDIA AND WEB TECHNOLOGY SET-4 Series GBM Code No. 89 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 9 printed pages. Code number given on the right

More information

Lecture 6 Session Control and User Authentication. INLS 760 Web Databases Spring 2013 Rob Capra

Lecture 6 Session Control and User Authentication. INLS 760 Web Databases Spring 2013 Rob Capra Lecture 6 Session Control and User Authentication INLS 760 Web Databases Spring 2013 Rob Capra HTML Forms and PHP PHP: lect2/form1.php echo "Hello, ". htmlspecialchars(strip_tags($_get['name'])); echo

More information

Cookies and S essions 323

Cookies and S essions 323 Cookies and Sessions 9 The Hypertext Transfer Protocol (HTTP) is a stateless technology, meaning that each individual HTML page is an unrelated entity. HTTP has no method for tracking users or retaining

More information

Daniel Pittman October 17, 2011

Daniel Pittman October 17, 2011 Daniel Pittman October 17, 2011 SELECT target-list FROM relation-list WHERE qualification target-list A list of attributes of relations in relation-list relation-list A list of relation names qualification

More information

PHP. M hiwa ahamad aziz Raparin univercity. 1 Web Design: Lecturer ( m hiwa ahmad aziz)

PHP. M hiwa ahamad aziz  Raparin univercity. 1 Web Design: Lecturer ( m hiwa ahmad aziz) PHP M hiwa ahamad aziz www.raparinweb.com Raparin univercity 1 Server-Side Programming language asp, asp.net, php, jsp, perl, cgi... 2 Of 68 Client-Side Scripting versus Server-Side Scripting Client-side

More information

Lecture 7: Web hacking 3, SQL injection, Xpath injection, Server side template injection, File inclusion

Lecture 7: Web hacking 3, SQL injection, Xpath injection, Server side template injection, File inclusion IN5290 Ethical Hacking Lecture 7: Web hacking 3, SQL injection, Xpath injection, Server side template injection, File inclusion Universitetet i Oslo Laszlo Erdödi Lecture Overview What is SQL injection

More information

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop 205CDE Developing the Modern Web Assignment 2 Server Side Scripting Scenario D: Bookshop Introduction This assignment was written using PHP programming language for interactions with the website and the

More information

Executing Simple Queries

Executing Simple Queries Script 8.3 The registration script adds a record to the database by running an INSERT query. 1

More information

Multimedia im Netz Online Multimedia Winter semester 2015/16

Multimedia im Netz Online Multimedia Winter semester 2015/16 Multimedia im Netz Online Multimedia Winter semester 2015/16 Tutorial 05 Minor Subject Ludwig-Maximilians-Universität München Online Multimedia WS 2015/16 - Tutorial 05 (NF) - 1 Today s Agenda Discussion

More information

SQL Commands & Mongo DB New Syllabus

SQL Commands & Mongo DB New Syllabus Chapter 15 : Computer Science Class XI ( As per CBSE Board) SQL Commands & Mongo DB New Syllabus 2018-19 SQL SQL is an acronym of Structured Query Language.It is a standard language developed and used

More information

CSC System Development with Java. Database Connection. Department of Statistics and Computer Science. Budditha Hettige

CSC System Development with Java. Database Connection. Department of Statistics and Computer Science. Budditha Hettige CSC 308 2.0 System Development with Java Database Connection Budditha Hettige Department of Statistics and Computer Science Budditha Hettige 1 From database to Java There are many brands of database: Microsoft

More information

Lecture 13: MySQL and PHP. Monday, March 26, 2018

Lecture 13: MySQL and PHP. Monday, March 26, 2018 Lecture 13: MySQL and PHP Monday, March 26, 2018 MySQL The Old Way In older versions of PHP, we typically used functions that started with mysql_ that did not belong to a class For example: o o o o mysql_connect()

More information

DATABASE MANAGEMENT SYSTEMS PREPARED BY: ENGR. MOBEEN NAZAR

DATABASE MANAGEMENT SYSTEMS PREPARED BY: ENGR. MOBEEN NAZAR DATABASE MANAGEMENT SYSTEMS PREPARED BY: ENGR. MOBEEN NAZAR SCHEME OF PRESENTATION LAB MARKS DISTRIBUTION LAB FILE DBMS PROJECT INSTALLATION STEPS FOR SQL SERVER 2008 SETTING UP SQL SERVER 2008 INTRODUCTION

More information

Module - P7 Lecture - 15 Practical: Interacting with a DBMS

Module - P7 Lecture - 15 Practical: Interacting with a DBMS Introduction to Modern Application Development Prof. Tanmai Gopal Department of Computer Science and Engineering Indian Institute of Technology, Madras Module - P7 Lecture - 15 Practical: Interacting with

More information

Chapters 10 & 11 PHP AND MYSQL

Chapters 10 & 11 PHP AND MYSQL Chapters 10 & 11 PHP AND MYSQL Getting Started The database for a Web app would be created before accessing it from the web. Complete the design and create the tables independently. Use phpmyadmin, for

More information

Setup of PostgreSQL, pgadmin and importing data. CS3200 Database design (sp18 s2) Version 2/9/2018

Setup of PostgreSQL, pgadmin and importing data. CS3200 Database design (sp18 s2)   Version 2/9/2018 Setup of PostgreSQL, pgadmin and importing data CS3200 Database design (sp18 s2) https://course.ccs.neu.edu/cs3200sp18s2/ Version 2/9/2018 1 Overview This document covers 2 issues: 1) How to install PostgreSQL:

More information

National Quali cations

National Quali cations National Quali cations AH07 X76/77/ Computing Science TUESDAY, 6 MAY :00 PM :00 PM Total marks 60 Attempt ALL questions. Write your answers clearly in the answer booklet provided. In the answer booklet

More information

A1 (Part 2): Injection SQL Injection

A1 (Part 2): Injection SQL Injection A1 (Part 2): Injection SQL Injection SQL injection is prevalent SQL injection is impactful Why a password manager is a good idea! SQL injection is ironic SQL injection is funny Firewall Firewall Accounts

More information

Full Stack Web Developer

Full Stack Web Developer Full Stack Web Developer S.NO Technologies 1 HTML5 &CSS3 2 JavaScript, Object Oriented JavaScript& jquery 3 PHP&MYSQL Objective: Understand the importance of the web as a medium of communication. Understand

More information

Web based Online MCQ Examination System

Web based Online MCQ Examination System Web based Online MCQ Examination System Submitted By Oahidujjaman ID: 2014-1-96-007 Supervised By Md. Shamsujjoha Senior Lecturer Department of Computer Science and Engineering East West University The

More information

SETTING UP AND RUNNING A WEB SITE ON YOUR LENOVO STORAGE DEVICE WORKING WITH WEB SERVER TOOLS

SETTING UP AND RUNNING A WEB SITE ON YOUR LENOVO STORAGE DEVICE WORKING WITH WEB SERVER TOOLS White Paper SETTING UP AND RUNNING A WEB SITE ON YOUR LENOVO STORAGE DEVICE WORKING WITH WEB SERVER TOOLS CONTENTS Introduction 1 Audience 1 Terminology 1 Enabling a custom home page 1 Adding webmysqlserver

More information

National Quali cations

National Quali cations National Quali cations AH2017 X716/77/11 Computing Science TUESDAY, 16 MAY 1:00 PM 3:00 PM Total marks 60 Attempt ALL questions. Write your answers clearly in the answer booklet provided. In the answer

More information

Laborator 10. SGBD-ul MySQL (partea I)

Laborator 10. SGBD-ul MySQL (partea I) Laborator 10 SGBD-ul MySQL (partea I) 1. Introduceţi următoarea secvenţă PHP: $dbh = mysql_connect("localhost", "Costica", "mypass") or die("unable to connect to MySQL"); $selectdb = mysql_select_db('lucrudb');

More information

Website Pros Database Component. v

Website Pros Database Component. v Website Pros Database Component v1.00.02 Table Of Contents Before Getting Started... 2 Using the Database Component... 5 How the Database Component Works... 5 Adding the Toolbar... 6 Adding Component

More information

Chapter 13 : Informatics Practices. Class XI ( As per CBSE Board) SQL Commands. New Syllabus Visit : python.mykvs.in for regular updates

Chapter 13 : Informatics Practices. Class XI ( As per CBSE Board) SQL Commands. New Syllabus Visit : python.mykvs.in for regular updates Chapter 13 : Informatics Practices Class XI ( As per CBSE Board) SQL Commands New Syllabus 2018-19 SQL SQL is an acronym of Structured Query Language.It is a standard language developed and used for accessing

More information

WEB SECURITY: SQL INJECTION

WEB SECURITY: SQL INJECTION WEB SECURITY: SQL INJECTION CMSC 414 FEB 15 2018 A very basic web architecture Client Server A very basic web architecture Client Server A very basic web architecture Client Server A very basic web architecture

More information

2017 Politecnico di Torino 1

2017 Politecnico di Torino 1 SQL for the applications Call Level Interface Requests are sent to the DBMS through functions of the host language solution based on predefined interfaces API, Application Programming Interface SQL instructions

More information