Setting up a Development Environment. What you need Webserver (Apache) Database (MySQL) PHP All in Uniserver (google “uniserver”) Download the windows.

Slides:



Advertisements
Similar presentations
Agenda Web Application Web Page development WAMP
Advertisements

Faculty of Sciences and Social Sciences HOPE PHP & MySQL Stewart Blakeway FML 213
PHP and MySQL PHP for the Web, page PHP and MySQL MySQL Resource PHP – MySQL Resource
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
Multiple Tiers in Action
Website Development & Management PHP Odds & Ends Instructor: John Seydel, Ph.D. CIT Fall
Intermediate PHP & MySQL
PHP and MySQL Web Development tMyn1 PHP and MySQL Web Development When you install PHP, you can select from a number of extensions. The MySQL support in.
Website Development Working with MySQL. What you will achieve today! Connecting to mySql Creating tables in mySql Saving data on a server using mySql.
Dynamic Web site With PHP and MySQL. MySQL The combination of MySQL database and PHP scripting language is optimum for building dynamic websites. MySQL.
Open Source Software WampServer Presented By Mr. R.Aravindhan.
Introduction: Drupal is a free and open-source content management system (CMS). A content management system(CMS) is a computer program that allows publishing,
Lecture 3 – Data Storage with XML+AJAX and MySQL+socket.io
Powerpoint Templates Page 1 Powerpoint Templates Web Programming PHP MySql Ikbal Jamaludin.
© Yanbu University College YANBU UNIVERSITY COLLEGE Management Science Department © Yanbu University College Module 6:WEB SERVER AND SERVER SIDE SCRPTING,
MySQL in PHP – Page 1 of 17CSCI 2910 – Client/Server-Side Programming CSCI 2910 Client/Server-Side Programming Topic: MySQL in PHP Reading: Williams &
PHP MySQL Introduction
SQL HW1 Turn in as a hardcopy at the start of next class period. You may work this assignment in groups.
1 PHP and MySQL. 2 Topics  Querying Data with PHP  User-Driven Querying  Writing Data with PHP and MySQL PHP and MySQL.
PHP With Oracle 11g XE By Shyam Gurram Eastern Illinois University.
Pi In The Sky (Web Interface) Gaston Seneza Philander Smith College, Little Rock, AR SIParCS Intern Mentors: Dr. Richard Loft & Dr. Raghu Raj Kumar 1.
MySQL. MySQL is a Relational Database Management System (RDBMS) that runs as a server providing multiuser access to a number of databases. A third party.
Website Development & Management Getting Started with Databases Instructor: John Seydel, Ph.D. CIT Fall
_______________________________________________________________________________________________________________ PHP Bible, 2 nd Edition1  Wiley and the.
15/10/20151 PHP & MySQL 'Slide materials are based on W3Schools PHP tutorial, 'PHP website 'MySQL website.
Introduction to MySQL Lab no. 10 Advance Database Management System.
Installing and Using MySQL and phpMyAdmin. Last Time... Installing Apache server Installing PHP Running basic PHP scripts on the server Not necessary.
PHP MySQL Introduction. MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database.
Chapter 6 PHP Interacts with Mysql Database. Introduction In PHP, there is no consolidated interface. Instead, a set of library functions are provided.
Week 7. Lecture 2 Functions, Arrays, PHP&MySQL. Function with More than one argument and a return statement For a function to return a value, the return.
1. Connecting database from PHP 2. Sending query 3. Fetching data 4. Persistent connections 5. Best practices.
Lecture 10 – MYSQL and PHP (Part 2)
WAMP server AppServer phpMyAdmin DB creation with phpMyAdmin.
Session 7: Getting PHP to Talk to MySQL. Objectives Connecting to the Database Building & Executing the SQL SELECT Query Fetching & Displaying the data.
HTML, PHP, and MySQL: Putting It All Together. Making a Form Input tags Types: “text” “radio” “checkboxes” “submit”
Open Source Server Side Scripting ECA 236 Open Source Server Side Scripting PHP & MySQL.
Login to a Database (from a Webpage), Inserting data into a database from a form, getting data from database and display on Webpage Done by: Mashail Alsolamy.
Introduction to Web Programming. Introduction to PHP What is PHP? What is a PHP File? What is MySQL? Why PHP? Where to Start?
Tracking Student Progress Online Paul Daniels Kochi University of Technology 2:15 – 3:00 PM.
PHP Database Processing CIS 1715 Web Technologies.
Case Study Dynamic Website - Three Tier Architecture
XAMPP Introduction to Web Programming Kirkwood Community College Fred McClurg © Copyright 2015, Fred McClurg, All Rights Reserved Web Server Software Distribution.
PHP and Mysql Database. PHP and Database Mysql – popular open-source database management system PHP usually works with Mysql for web-based database applications.
Creating a simple database This shows you how to set up a database using PHPMyAdmin (installed with WAMP)
 Connectivity Function :-  mysql_connect ()  mysql_select_db ()  mysql_query ()  mysql_nam_rows ()  mysql_fetch_row ()  mysql_affected_rows () 
WAMP Server Installatin Shiyun Wen. WAMP Server Installation  WAMP Server is an integrated installation of Apache, MySQL, and PHP for Windows. Following.
PHP Introduction PHP is a server-side scripting language.
Windows 7 WampServer 2.1 MySQL PHP 5.3 Script Apache Server User Record or Select Media Upload to Internet Return URL Forward URL Create.
PhpMyAdmin Matthew Walsh April 28, 2003 CMSC Shawn Sivy.
MySQL MySQL and PHP – interacting with a database.
Server Side Scripting. Common Gateway Interface (CGI) The web is a client-server system.
The Aphrodisias Project, Humanities Computing and NYU Matthew Zimmerman New York University PHP ConEast 2003 April 25, 2003.
PHP MySQL1 PHP and MySQL After this lecture, you should be able to:  Access a MySQL database with PHP  mysql_connect()  mysql_select_db()  mysql_query()
Moodle 2 on USB Drive (Portable) By Ramzan Jabbar IT Engineer Doncaster Deaf College.
PHP stands for …….. “PHP Hypertext Pre-processor” and is a server-side scripting language like ASP. PHP scripts are executed on the server PHP supports.
Wordpress. What is Wordpress? Wordpress is a content management system. It is free and easy to use. It allows you to build dynamic websites It is built.
Outline  XAMPP  XAMPP Install  Put php and HTML documents  Windows and Mac Version  Security.
COM621: Advanced Interactive Web Development Lecture 10 PHP and MySQL.
1 PHP and MySQL Web Development When you install PHP, you can select from a number of extensions. The MySQL support in PHP consists of a number of functions.
sTGC production database design
Introduction to Dynamic Web Programming
UFIE8K10-M Data Management 2006/7
Website Development Basics with PHP MySQL
العدد تذكيره وتأنيثه مقدمة
PHP-language, database-programming
Web Browser server client 3-Tier Architecture Apache web server PHP
PHP XAMPP is webhosting for windows - Apache : HTTPD for Web Server - MySQL : Database Server - PHP : Interpreter - PHPMyAdmin - Filezilla : FTP Server.
MySQL Backup, Transfer and Restore
Week 1 : Preparation.
XAMPP.
Presentation transcript:

Setting up a Development Environment

What you need Webserver (Apache) Database (MySQL) PHP All in Uniserver (google “uniserver”) Download the windows exe installer

Start the server + database start_server.bat creates W: drive in “My Computer” Opens browser to

Mysql PhpMyAdmin is a great interface Important php functions: –mysql_connect() –mysql_select_db() –mysql_query() –Mysql_fetch_array()

Working with while while ($record = mysql_fetch_array()) –$record holds an array of your fields + values –will loop through all the records you fetched –the array will be either numerical (indexed by 0,1,2,3) or associative (indexed by “fieldname”)

HTML Table something