<head> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> <title>my First PHP Lab</title> </head>

Size: px
Start display at page:

Download "<head> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> <title>my First PHP Lab</title> </head>"

Transcription

1 Lab1.html <title>my First PHP Lab</title> <form name = "form1" method = "post" action = "lab1.php"> Please enter your Username and <br /> Name: <input type = "text" name = "UserName" value = " " size = "20"> <br /> <input type = "text" name = " " value = " " size = "20"><br /> <input type = "submit" name = "button1" value = "Continue"> Lab1.php <?php $strusername = $_POST['UserName']; echo $strusername; $str =$_POST[' ']; echo $str ; Lab2.html <title>lab2</title> <form method="post" action="lab2.php" name="form2"> <table style="width: 100%" border="1">

2 <td>name</td> <td><input type="text" name="name" size="20"></td> <td> </td> <td><input type="text" name=" " size="20"></td> <td>gender</td> <td>male:<input type="radio" name="r1" value="male" checked="checked"></td> <td>female:<input type="radio" name="r1" value="female"> </td> <td>expert in:</td> <td>database:<input type="checkbox" name="c1" value="database"></td> <td>unix<input type="checkbox" name="c2" value="unix"></td> <td>programming:<input type="checkbox" name="c3" value="programming"></td> <input type="submit" value="submit" name="submit"> Lab2.php

3 <title>lab2</title> <form method="post" action="lab2.php" name="form2"> <table style="width: 100%" border="1"> <td>name</td> <td><input type="text" name="name" size="20"></td> <td> </td> <td><input type="text" name=" " size="20"></td> <td>gender</td> <td>male:<input type="radio" name="r1" value="male" checked="checked"></td> <td>female:<input type="radio" name="r1" value="female"> </td> <td>expert in:</td> <td>database:<input type="checkbox" name="c1" value="database"></td> <td>unix<input type="checkbox" name="c2" value="unix"></td> <td>programming:<input type="checkbox" name="c3" value="programming"></td> <input type="submit" value="submit" name="submit">

4 VERIFY.PHP <title>confirmation</title> <?php $strlastname = $_POST["LastName"] <?php $strfirstname = $_POST["FirstName"] <?php $str = $_POST[" "] <?php $strusername = $_POST["UserName"] <form method="post" action="process.php"> <h3><b><center>please Confirm Your Data Entry</center></b></h3> <p>if this information is NOT correct, please use the back button of your browser to return to the previous page and re-enter the information. Otherwise, continue.</p> <table border="1" width="100%"> <td width="50%">please enter the Last Name:</td> <td width="50%"><?php print($strlastname); </td> <td width="50%">please enter the First Name:</td> <td width="50%"><?php print($strfirstname); </td> <td width="50%">please enter the </td> <td width="50%"><?php print($str ); </td> <td width="50%">please enter the User Name:</td> <td width="50%"><?php print($strusername); </td> <td width="50%"></td> <td width="50%"><input type="submit" value="continue" name="button1"/></td>

5 <input type = "hidden" name = "LastName" value = "<?php print($strlastname); "> <input type = "hidden" name = "FirstName" value = "<?php print($strfirstname); "> <input type = "hidden" name = " " value = "<?php print($str ); "> <input type = "hidden" name = "UserName" value = "<?php print($strusername); "> PROCESS.PHP <title>update the Database</title> <?php $strlastname = $_POST["LastName"] <?php $strfirstname = $_POST["FirstName"] <?php $str = $_POST[" "] <?php $strusername = $_POST["UserName"] <?php $server = "csmaster.sxu.edu"; $username = "ab13001"; $password = "613130"; $handle = mysql_connect($server, $username, $password); $db = mysql_select_db("ab13001"); <?php $sql = "INSERT INTO lab2_students (LastName, FirstName, , UserName) VALUES ('$_POST[LastName]','$_POST[FirstName]','$_POST[ ]','$_POST[UserName]')"; if (!mysql_query($sql,$handle)) { die('error: '. mysql_error()); } echo "1 record added"; <form method="post" action="addperson.php"> <h3><b><center> Database Update Completed </center></b></h3>

6 <table border="1" width="100%"> <td width="50%">last Name:</td><td width="50%"><?php print($strlastname); </td> <td width="50%">first Name:</td><td width="50%"><?php print($strfirstname); </td> <td width="50%"> </td><td width="50%"><?php print($str ); </td> <td width="50%">user Name:</td><td width="50%"><?php print($strusername); </td> <td width="50%"></td> <td width="50%"><input type="submit" value="add Another Person" name="button1"/></td> <?php mysql_close($handle); LISTALL.PHP <title>database Information</title> <?php $server = "csmaster.sxu.edu"; $username = "ab13001"; $password = "613130"; $handle = mysql_connect($server, $username, $password); $db = mysql_select_db("ab13001"); <?php $strquery = "Select * from lab2_students "

7 <?php $rs = mysql_query($strquery) or die(mysql_error()); <?php echo "<table border='1'> <th>user Name</th> <th>first Name</th> <th>last Name</th> <th> </th> "; <?php while($row = mysql_fetch_array($rs)) { echo ""; echo "<td>". $row['username']. "</td>"; echo "<td>". $row['firstname']. "</td>"; echo "<td>". $row['lastname']. "</td>"; echo "<td>". $row[' ']. "</td>"; echo ""; } echo ""; <a href="lab3.php">lab3 Page</a> <?php mysql_close($handle); Lab3.php <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>add or View Records</title> <h3><b><center>add or View Records</center></b></h3>

8 <table border="1" width="100%"> <form method="post" action="addperson.php"> <td width="50%">add Person Page:</td> <td width="50%"><input type="submit" value="add Person" name="button1"/></td> <form method="post" action="listall.php"> <td width="50%">list All Records Page:</td> <td width="50%"><input type="submit" value="list All" name="button2"/></td> AddPerson.php <title>add Person to the Database</title> <form method="post" action="verify.php"> <h3><b><center>add Person to the Database</center></b></h3> <table border="1" width="100%"> <td width="50%">please enter the Last Name:</td> <td width="50%"><input type="text" name="lastname" size="20"/></td> <td width="50%">please enter the First Name:</td> <td width="50%"><input type="text" name="firstname" size="20"/></td>

9 <td width="50%">please enter the </td> <td width="50%"><input type="text" name=" " size="20"/></td> <td width="50%">please enter the User Name:</td> <td width="50%"><input type="text" name="username" size="20"/></td> <td width="50%"></td> <td width="50%"><input type="submit" value="submit" name="button1"/></td>

Download: Server-side technologies. WAMP (Windows), http://www.wampserver.com/en/ MAMP (Mac), http://www.mamp.info/en/

Download: Server-side technologies. WAMP (Windows), http://www.wampserver.com/en/ MAMP (Mac), http://www.mamp.info/en/ + 1 Server-side technologies Apache,, Download: Apache Web Server: http://httpd.apache.org/download.cgi application server: http://www.php.net/downloads.php DBMS: http://www.mysql.com/downloads/ LAMP:

More information

Internet Ohjelmointi 1 Examples 4

Internet Ohjelmointi 1 Examples 4 Internet Ohjelmointi 1 Example 1 4 form 5 6 7 8 Loan Amount 9 Monthly Repayment

More information

Sample Code with Output

Sample Code with Output Sample Code with Output File Upload : In PHP, we can upload file to a server fileupload.html #menu a #content #italictext

More information

Form Handling. Server-side Web Development and Programming. Form Handling. Server Page Model. Form data appended to request string

Form Handling. Server-side Web Development and Programming. Form Handling. Server Page Model. Form data appended to request string Form Handling Server-side Web Development and Programming Lecture 3: Introduction to Java Server Pages Form data appended to request string

More information

Mobile Web Applications using HTML5. L. Cotfas 14 Dec. 2011

Mobile Web Applications using HTML5. L. Cotfas 14 Dec. 2011 Mobile Web Applications using HTML5 L. Cotfas 14 Dec. 2011 Reasons for mobile web development Many different platforms: Android, IPhone, Symbian, Windows Phone/ Mobile, MeeGo (only a few of them) Reasons

More information

API. Application Programmers Interface document. For more information, please contact: Version 2.01 Aug 2015

API. Application Programmers Interface document. For more information, please contact: Version 2.01 Aug 2015 API Application Programmers Interface document Version 2.01 Aug 2015 For more information, please contact: Technical Team T: 01903 228100 / 01903 550242 E: [email protected] Page 1 Table of Contents Overview...

More information

Web Development Guide. Information Systems

Web Development Guide. Information Systems Web Development Guide Information Systems Gabriel Malveaux May 2013 Web Development Guide Getting Started In order to get started with your web development, you will need some basic software. In this guide

More information

JavaServer Pages Fundamentals

JavaServer Pages Fundamentals JavaServer Pages Fundamentals Prof. Dr.-Ing. Thomas Korte Laboratory of Information Technology 1 Introduction to JSP JavaServer Pages (JSP) is a Java technology which enables the development of dynamic

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

Create dynamic sites with PHP & MySQL

Create dynamic sites with PHP & MySQL Create dynamic sites with PHP & MySQL Presented by developerworks, your source for great tutorials Table of Contents If you're viewing this document online, you can click any of the topics below to link

More information

lectures/6/src/blink.html blink.html David J. Malan Computer Science S-75 Harvard Summer School 10. <!DOCTYPE html> 12. </script> 16.

lectures/6/src/blink.html blink.html David J. Malan Computer Science S-75 Harvard Summer School 10. <!DOCTYPE html> 12. </script> 16. lectures/6/src/blink.html 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 3 3 3 3 blink.html function blinker() var blinks = document.getelementsbytagname("blink"); for (var i = 0; i < blinks.length; i++) if (blinks[i].style.visibility

More information

ShoreTel Enterprise Contact Center 8 Installing and Implementing Chat

ShoreTel Enterprise Contact Center 8 Installing and Implementing Chat ShoreTel Enterprise Contact Center 8 Installing and Implementing Chat November 2012 Legal Notices Document and Software Copyrights Copyright 1998-2012 by ShoreTel Inc., Sunnyvale, California, USA. All

More information

Using Cloud Databases in the Cloud Control Panel By J.R. Arredondo (@jrarredondo)

Using Cloud Databases in the Cloud Control Panel By J.R. Arredondo (@jrarredondo) Using Cloud Databases in the Cloud Control Panel By J.R. Arredondo (@jrarredondo) Cloud Databases is the latest relational database service from Rackspace. We have just made it available in the new Cloud

More information

Chapter 2: Interactive Web Applications

Chapter 2: Interactive Web Applications Chapter 2: Interactive Web Applications 2.1! Interactivity and Multimedia in the WWW architecture 2.2! Server-Side Scripting (Example PHP, Part I) 2.3! Interactivity and Multimedia for Web Browsers 2.4!

More information

LAB 4 HTML TABLES AND FORMS

LAB 4 HTML TABLES AND FORMS LAB 4 HTML TABLES AND FORMS What You Will Learn How to create HTML tables How to style tables How to create HTML forms Approximate Time The exercises in this lab should take approximately 40 minutes to

More information

Web Application Development

Web Application Development Web Application Development Approaches Choices Server Side PHP ASP Ruby Python CGI Java Servlets Perl Choices Client Side Javascript VBScript ASP Language basics - always the same Embedding in / outside

More information

Internet Technologies

Internet Technologies QAFQAZ UNIVERSITY Computer Engineering Department Internet Technologies HTML Forms Dr. Abzetdin ADAMOV Chair of Computer Engineering Department [email protected] http://ce.qu.edu.az/~aadamov What are forms?

More information

CREATING WEB FORMS WEB and FORMS FRAMES AND

CREATING WEB FORMS WEB and FORMS FRAMES AND CREATING CREATING WEB FORMS WEB and FORMS FRAMES AND FRAMES USING Using HTML HTML Creating Web Forms and Frames 1. What is a Web Form 2. What is a CGI Script File 3. Initiating the HTML File 4. Composing

More information

INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP

INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP by Dalibor D. Dvorski, March 2007 Skills Canada Ontario DISCLAIMER: A lot of care has been taken in the accuracy of information provided in this article,

More information

Server-side: PHP and MySQL (continued)

Server-side: PHP and MySQL (continued) Server-side: PHP and MySQL (continued) some remarks check on variable: isset ( $variable )? more functionality in a single form more functionality in a single PHP-file updating the database data validation

More information

Hello friends, This is Aaditya Purani and i will show you how to Bypass PHP LFI(Local File Inclusion)

Hello friends, This is Aaditya Purani and i will show you how to Bypass PHP LFI(Local File Inclusion) #Title: PHP LFI Bypass #Date : 12-July-2015 #Tested on: Kali Linux/ Windows 7 #Category : Papers #Exploit Author : Aaditya Purani Hello friends, This is Aaditya Purani and i will show you how to Bypass

More information

Web Security. Jonathan Burket Carnegie Mellon University

Web Security. Jonathan Burket Carnegie Mellon University Web Security Jonathan Burket Carnegie Mellon University Credits: Original Slides by David Brumley. Examples based on DVWA (http://www.dvwa.co.uk/) Collin Jackson s Web Security Course http://caffeinept.blogspot.com/2012/01/dvwa-sql-injection.html

More information

The PayPal payment gateway and 4D Business Kit 2.2

The PayPal payment gateway and 4D Business Kit 2.2 The PayPal payment gateway and 4D Business Kit 2.2 Useful informations This document describes how to integrate 4D Business Kit 2.2 with the PayPal payment gateway. In this documentation, we suppose that

More information

Other Language Types CMSC 330: Organization of Programming Languages

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

More information

HTML Fails: What No One Tells You About Email HTML

HTML Fails: What No One Tells You About Email HTML HTML Fails: What No One Tells You About Email HTML 2 Today s Webinar Presenter Kate McDonough Campaign Manager at PostUp Worked with various ESPs: Constant Contact, Campaign Monitor, ExactTarget, Distribion

More information

CPAY MERCHANT INTEGRATION SPECIFICATION

CPAY MERCHANT INTEGRATION SPECIFICATION CPAY MERCHANT INTEGRATION SPECIFICATION 1 CONTENTS Using this specification... 3 Purpose... 3 Audience... 3 Introduction... 4 Payment Process... 5 Payment Parameters... 6 Technical Details... 8 Communication

More information

DEPARTMENT OF INFORMATION TECHNOLOGY

DEPARTMENT OF INFORMATION TECHNOLOGY M.A.M. COLLEGE OF ENGINEERING AND TECHNOLOGY TRICHY -621105 DEPARTMENT OF INFORMATION TECHNOLOGY ANNA UNIVERSITY PRACTICAL EXAMINATIONS, OCT 2011 RECORD NOTE BOOK CS1403 - SOFTWARE DEVELOPMENT LABORATORY

More information

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE SAML 2.0 CONFIGURATION GUIDE Roy Heaton David Pham-Van Version 1.1 Published March 23, 2015 This document describes how to configure OVD to use SAML 2.0 for user

More information

SmartPad4i Solution Guide

SmartPad4i Solution Guide SmartPad4i Solution Guide SystemObjects Corporation March 2014 ABSTRACT With no mobile OS skills required, SmartPad4i leverages your existing RPG and COBOL skills to quickly build real mobile apps that

More information

7 Web Databases. Access to Web Databases: Servlets, Applets. Java Server Pages PHP, PEAR. Languages: Java, PHP, Python,...

7 Web Databases. Access to Web Databases: Servlets, Applets. Java Server Pages PHP, PEAR. Languages: Java, PHP, Python,... 7 Web Databases Access to Web Databases: Servlets, Applets Java Server Pages PHP, PEAR Languages: Java, PHP, Python,... Prof. Dr. Dietmar Seipel 837 7.1 Access to Web Databases by Servlets Java Servlets

More information

Dimdim Web Meeting Server API Documentation (v4.5)

Dimdim Web Meeting Server API Documentation (v4.5) Dimdim Web Meeting Server API Documentation (v4.5) Table of Contents INTRODUCTION:... 2 ARCHITECTURE:... 3 ARCHITECTURE DIAGRAM... 4 COMPONENT DESCRIPTION:... 4 PORT ARCHITECTURE... 5 DEVELOPMENT API...

More information

How To Create A Web Database From A Multimedia Resources Database On A Microsoft Web Browser On A Pc Or Mac Or Mac (For Free) On A Mac Or Ipad Or Ipa (For Cheap) On Pc Or Ipam (For Money

How To Create A Web Database From A Multimedia Resources Database On A Microsoft Web Browser On A Pc Or Mac Or Mac (For Free) On A Mac Or Ipad Or Ipa (For Cheap) On Pc Or Ipam (For Money How to Build a Web Database: A Case Study Introduction This paper shows you how to build a simple Web application using ColdFusion. If you follow the sample case study of the multimedia resources database

More information

Web [Application] Frameworks

Web [Application] Frameworks Web [Application] Frameworks conventional approach to building a web service write ad hoc client code in HTML, CSS, Javascript,... by hand write ad hoc server code in [whatever] by hand write ad hoc access

More information

An introduction to web programming with Java

An introduction to web programming with Java Chapter 1 An introduction to web programming with Java Objectives Knowledge Objectives (continued) The first page of a shopping cart application The second page of a shopping cart application Components

More information

LIBRARY MANAGEMENT SYSTEM

LIBRARY MANAGEMENT SYSTEM Mini Project Report On LIBRARY MANAGEMENT SYSTEM Submitted By: PRABHAKAR KUMAR RAHUL KUMAR RAJAT SINGH VIKRAM PRATAP SINGH In partial fulfillment for the award of the degree of B. TECH DEGREE In COMPUTER

More information

Setup and Administration for ISVs

Setup and Administration for ISVs 17 Setup and Administration for ISVs ISV accounts for both hosted and private cloud support white labeling functionality and give you the ability to provision and manage customer tenants directly. A customer

More information

Concepts Design Basics Command-line MySQL Security Loophole

Concepts Design Basics Command-line MySQL Security Loophole Part 2 Concepts Design Basics Command-line MySQL Security Loophole Databases Flat-file Database stores information in a single table usually adequate for simple collections of information Relational Database

More information

Supercharge your MySQL application performance with Cloud Databases

Supercharge your MySQL application performance with Cloud Databases Supercharge your MySQL application performance with Cloud Databases J.R. Arredondo Director Product Marketing Kelly Goolsby Sales Engineering Manager Daniel Morris Senior Product Manager Dave Fowler Founder

More information

Java Server Pages combined with servlets in action. Generals. Java Servlets

Java Server Pages combined with servlets in action. Generals. Java Servlets Java Server Pages combined with servlets in action We want to create a small web application (library), that illustrates the usage of JavaServer Pages combined with Java Servlets. We use the JavaServer

More information

CREATING AND PROCESSING HTML FORMS

CREATING AND PROCESSING HTML FORMS CREATING AND PROCESSING HTML FORMS Topics in This Chapter Data submission from forms Text controls Push buttons Check boxes and radio buttons Combo boxes and list boxes File upload controls Server-side

More information

How To Create A Personalized Website In Chalet.Ch

How To Create A Personalized Website In Chalet.Ch AAI-enabling Web Applications (personalized, dynamic content in PHP, ASP, Perl, Java,...) Valéry Tschopp 2005 SWITCH AAI Attribute Transmission Attributes Store SAML Attributes Home

More information

Server-side: PHP and MySQL

Server-side: PHP and MySQL Server-side: PHP and MySQ webserver e.g. Apache ) ) PHP MySQ!" #$$%& ' )& +", -../ -0 &0/ 1 +"1& ' hello echo "hello" ) ; 1 2 '2 & 3&

More information

SCA database and search engine. Vignir Barði Einarsson. Supervisor: Nik Whitehead. Faculty of Information Technology, University of Akureyri

SCA database and search engine. Vignir Barði Einarsson. Supervisor: Nik Whitehead. Faculty of Information Technology, University of Akureyri SCA database and search engine Vignir Barði Einarsson Supervisor: Nik Whitehead Faculty of Information Technology, University of Akureyri Submitted April 2006, in partial fulfilment of the conditions of

More information

Hands-On Workshops HW003

Hands-On Workshops HW003 HW003 Connecting the SAS System to the Web: An Introduction to SAS/IntrNet Application Dispatcher Vincent Timbers, Penn State, University Park, PA ABSTRACT There are several methods for accessing the SAS

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 3, Issue 1, January 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Review on

More information

<a href="document URL"... attributes-list>link Text</a>

<a href=document URL... attributes-list>link Text</a> HTML LINKS: A link is specified using HTML tag . This tag is called anchor tag and anything between the opening tag and the closing tag becomes part of the link and a user can click that part

More information

7- PHP and MySQL queries

7- PHP and MySQL queries 7- PHP and MySQL queries Course: Cris*na Puente, Rafael Palacios 2010- 1 Introduc*on Introduc?on PHP includes libraries for communica*ng with several databases: MySQL (OpenSource, the use selected for

More information

Creating SSO Parent Accounts on the Admin Side for the Public Portal

Creating SSO Parent Accounts on the Admin Side for the Public Portal Creating SSO Parent Accounts on the Admin Side for the Public Portal Parent Single Sign-On offers a number of benefits, including access to multiple students with one login, a personalized account for

More information

WordPress Security Scan Configuration

WordPress Security Scan Configuration WordPress Security Scan Configuration To configure the - WordPress Security Scan - plugin in your WordPress driven Blog, login to WordPress as administrator, by simply entering the url_of_your_website/wp-admin

More information

Server side scripting and databases

Server side scripting and databases Three components used in typical web application Server side scripting and databases How Web Applications interact with server side databases Browser Web server Database server Web server Web server Apache

More information

Extending the Data Warehouse: An Introduction to OLE DB

Extending the Data Warehouse: An Introduction to OLE DB Extending the Data Warehouse: An Introduction to OLE DB 7Â(EZMHÂ6MFEÂ.%()Â8IGLÂ-RGÂ'PIEV[EXIVÂ*0 ABSTRACT Now that you have your data warehoused, how do you share that information with others who need

More information

Chapter 1 Introduction to web development and PHP

Chapter 1 Introduction to web development and PHP Chapter 1 Introduction to web development and PHP Murach's PHP and MySQL, C1 2010, Mike Murach & Associates, Inc. Slide 1 Objectives Applied 1. Use the XAMPP control panel to start or stop Apache or MySQL

More information

DirectOne Hosted Payment Page. Integration Guide

DirectOne Hosted Payment Page. Integration Guide DirectOne Hosted Payment Page Integration Guide Document Control This is a control document DESCRIPTION DirectOne Hosted Payment Page Integration Guide CREATION DATE 02/04/2007 CREATED BY SecurePay VERSION

More information

1.264 Lecture 19 Web database: Forms and controls

1.264 Lecture 19 Web database: Forms and controls 1.264 Lecture 19 Web database: Forms and controls We continue using Web site Lecture18 in this lecture Next class: ASP.NET book, chapters 11-12. Exercises due after class 1 Forms Web server and its pages

More information

Joomla 1.0 Extension Development Training. Learning to program for Joomla

Joomla 1.0 Extension Development Training. Learning to program for Joomla Joomla 1.0 Extension Development Training Learning to program for Joomla Objectives & Requirements Learn to develop basic Joomla Mambots, Modules and Components. Familiar with PHP and MySQL programming.

More information

Web Page Redirect. Application Note

Web Page Redirect. Application Note Web Page Redirect Application Note Table of Contents Background... 3 Description... 3 Benefits... 3 Theory of Operation... 4 Internal Login/Splash... 4 External... 5 Configuration... 5 Web Page Redirect

More information

Agenda. 1. ZAPms Konzept. 2. Benutzer-Kontroller. 3. Laout-Aufbau. 4. Template-Aufbau. 6. Konfiguration. 7. Module.

Agenda. 1. ZAPms Konzept. 2. Benutzer-Kontroller. 3. Laout-Aufbau. 4. Template-Aufbau. 6. Konfiguration. 7. Module. Agenda. ZAPms Konzept.. Benutzer-Kontroller.. Laout-Aufbau.. Template-Aufbau. 5. Bildergalerie (Beispiel). 6. Konfiguration. 7. Module. . ZAPms Konzept Benutzer Web Server Benutzer-Kontroller www.domain/index.php

More information

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database Application note: SQL@CHIP Connecting the IPC@CHIP to a Database 1. Introduction This application note describes how to connect an IPC@CHIP to a database and exchange data between those. As there are no

More information

Payment Page Integration Guide

Payment Page Integration Guide Payment Page Integration Guide Version 2.2 - May 2015 Table of Contents About this Guide...3 Introduction...4 Benefits of the Hosted Payment Page:...4 Submitting a Payment Request...5 Payment Request parameters...5

More information

Python and MongoDB. Why?

Python and MongoDB. Why? Python and MongoDB Kevin Swingler Why? Python is becoming the scripting language of choice in big data It has a library for connecting to a MongoDB: PyMongo Nice mapping betwenpython data structures and

More information

Príprava štúdia matematiky a informatiky na FMFI UK v anglickom jazyku

Príprava štúdia matematiky a informatiky na FMFI UK v anglickom jazyku Univerzita Komenského v Bratislave Fakulta matematiky, fyziky a informatiky Príprava štúdia matematiky a informatiky na FMFI UK v anglickom jazyku ITMS: 26140230008 dopytovo orientovaný projekt Moderné

More information

Designing framework for web development

Designing framework for web development Designing framework for web development Mohammad Hafijur Rahman Department of Informatics and Media Degree project 30 credits. Autumn term 2011 Supervisor: Dr. Jonas Sjöström Abstract In this software

More information

Fasthosts ASP scripting examples Page 1 of 17

Fasthosts ASP scripting examples Page 1 of 17 Introduction-------------------------------------------------------------------------------------------------- 2 Sending email from your web server------------------------------------------------------------------

More information

HTML5 and CSS3. new semantic elements advanced form support CSS3 features other HTML5 features

HTML5 and CSS3. new semantic elements advanced form support CSS3 features other HTML5 features HTML5 and CSS3 new semantic elements advanced form support CSS3 features other HTML5 features fallback solutions HTML5 and CSS3 are new and evolving standards two levels of fallback different browsers

More information

Installation Tutorial Script: The Real Estate Script. 1. Please login to download script. On PHP Classifieds Script web site.

Installation Tutorial Script: The Real Estate Script. 1. Please login to download script. On PHP Classifieds Script web site. Installation Tutorial Script: The Real Estate Script Thank you for your purchase of The Real Estate Script. This tutorial will guide you threw the installation process. In this install example we use CPanel

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

Free Medical Billing. Insurance Payment Posting: The following instructions will help guide you through Insurance Payment Posting Procedures.

Free Medical Billing. Insurance Payment Posting: The following instructions will help guide you through Insurance Payment Posting Procedures. : The following instructions will help guide you through Procedures. Click Windows Start Button Click Open Internet Browser Enter Https://www.FreeMedicalBilling.net Click Login to Your Account Enter Username:

More information

EXPLORATiON in THE CROSS TERRiTORY the inevitable continuation of my first paper: Cross Site Scripting - Attack and Defense guide

EXPLORATiON in THE CROSS TERRiTORY the inevitable continuation of my first paper: Cross Site Scripting - Attack and Defense guide EXPLORATiON in THE CROSS TERRiTORY the inevitable continuation of my first paper: Cross Site Scripting - Attack and Defense guide By Xylitol Summary: The Cross Frame Scripting \ Theoretical explanation

More information

Creating Java EE Applications and Servlets with IntelliJ IDEA

Creating Java EE Applications and Servlets with IntelliJ IDEA Creating Java EE Applications and Servlets with IntelliJ IDEA In this tutorial you will: 1. Create IntelliJ IDEA project for Java EE application 2. Create Servlet 3. Deploy the application to JBoss server

More information

AD Phonebook 2.2. Installation and configuration. Dovestones Software

AD Phonebook 2.2. Installation and configuration. Dovestones Software AD Phonebook 2.2 Installation and configuration 1 Table of Contents Introduction... 3 AD Self Update... 3 Technical Support... 3 Prerequisites... 3 Installation... 3 Adding a service account and domain

More information

NO SQL! NO INJECTION?

NO SQL! NO INJECTION? NO SQL! NO INJECTION? A talk on the state of NoSQL security IBM Cyber Security Center of Excellence Aviv Ron Alexandra Shulman-Peleg IBM AppScan Emanuel Bronshtein AVIV RON Security Researcher for IBM

More information

HTML Redirect Integration Guide

HTML Redirect Integration Guide Business Gateway HTML Redirect Integration Guide V5.2 September 2015 Use this guide to: Integrate your website with Worldpay Create and test HTML Redirect orders Look up ISO codes, payment method codes,

More information

TO SQL DB. Manual. Page 1 of 7. Manual. Tel & Fax: +39 0984 494277 E-mail: [email protected] Web: www.altilagroup.com

TO SQL DB. Manual. Page 1 of 7. Manual. Tel & Fax: +39 0984 494277 E-mail: info@altiliagroup.com Web: www.altilagroup.com Page 1 of 7 TO SQL DB Sede opertiva: Piazza Vermicelli 87036 Rende (CS), Italy Page 2 of 7 TABLE OF CONTENTS 1 APP DOCUMENTATION... 3 1.1 HOW IT WORKS 3 1.2 Input data 4 1.3 Output data 4 1.4 Basic workflow

More information

SelectSurvey.NET User Manual

SelectSurvey.NET User Manual SelectSurvey.NET User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys 7 Survey

More information

The following steps detail how to prepare your database.

The following steps detail how to prepare your database. Using databases in Second Life or Open Sim to enhance user experience Tom Connors, SciEthis Interactive 2012 Second Life and Open Sim each have a built in system for editing the virtual world that allows

More information

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING Wednesday 26 th March 2014 - Morning Answer any THREE questions out

More information

Modeling Presentation Layers of Web Applications for Testing

Modeling Presentation Layers of Web Applications for Testing Modeling Presentation Layers of Web Applications for Testing Jeff Offutt Software Engineering Volgenau School of Information Technology and Engineering George Mason University Fairfax, VA 22030, USA [email protected]

More information

Galaxy Software Addendum

Galaxy Software Addendum Galaxy Software Addendum for Importing Users from Active Directory Includes Encryption of Connection Strings Page 1 of 9 System Galaxy Version 10.3 How to Guide For Importing users from Active Directory

More information

Developer Guide To The. Virtual Merchant

Developer Guide To The. Virtual Merchant Developer Guide To The Virtual Merchant March 1, 2010 2 Virtual Merchant Developer s Guide THIS VIRTUAL MERCHANT DEVELOPER S GUIDE WILL FAMILIARIZE YOU WITH ALL THE TRANSACTION TYPES AND PROCEDURES YOU

More information

Web Design Course. Home Page. Join in. Home. Objectives. Course Content. Assignments & Discussion. Grades. Help. Contact Me aab43@uakron.

Web Design Course. Home Page. Join in. Home. Objectives. Course Content. Assignments & Discussion. Grades. Help. Contact Me aab43@uakron. Home Page Web Design Course Join in Navigation Bar: Home Objectives Course Content Assignments & Discussion Grades Help Contact Me [email protected] Welcome to web design course., This course is designed

More information

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service http://docs.oracle.com Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service Configuration Guide 2015 Oracle Corporation. All rights reserved 05/11/2015 Contents 1 HIPAA 3 1.0.1 What is HIPAA?

More information

How to obtain tax return transcripts from the IRS website

How to obtain tax return transcripts from the IRS website How to obtain tax return transcripts from the IRS website Step One: In your browser, type in www.irs.gov and click on the link that says Get Transcript for My Tax Records Step Two: Click on the Get Transcript

More information

Big Bad Moodle Guide By Mike Tupker [email protected] Version 1

Big Bad Moodle Guide By Mike Tupker mtupker@mtmercy.edu Version 1 Big Bad Moodle Guide By Mike Tupker [email protected] Version 1 Introduction. I m a Desktop Technician/Network Administrator at Mount Mercy College in Cedar Rapids Iowa. This document is a how to for

More information