PHP with MySQL: What you need to know Chapter 3. This section is on using PHP script tags appropriately in your PHP program.

Similar documents
Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics

Dreamweaver: Web Forms

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

Comp-206 : Introduction to Software Systems Lecture 23. Alexandre Denault Computer Science McGill University Fall 2006

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab.

CS 1100: Web Development: Client Side Coding / Fall 2016 Lab 2: More HTML and CSS

HTML and CSS MIS Konstantin Bauman. Department of MIS Fox School of Business Temple University

CSS worksheet. JMC 105 Drake University

HTML Forms. By Jaroslav Mohapl

In the early days of the Web, designers just had the original 91 HTML tags to work with.

**Method 3** By attaching a style sheet to your web page, and then placing all your styles in that new style sheet.

Review Question 1. Which tag is used to create a link to another page? 1. <p> 2. <li> 3. <a> 4. <em>

Cascading Style Sheets Level 2

Using CSS in Web Site Design

Web Technologies - by G. Sreenivasulu Handout - 1 UNIT - I

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

Introduction to WEB PROGRAMMING

CS 350 Internet Applications I Name: Exam II (CSS) October 29, 2013

2. Write style rules for how you d like certain elements to look.

Dreamweaver Website 1: Managing a Website with Dreamweaver

Lab Introduction to Cascading Style Sheets

Introduction to Cascading Style Sheet (CSS)

Creating and Building Websites

By completing this practical, the students will learn how to accomplish the following tasks:

Taking Fireworks Template and Applying it to Dreamweaver

Web Development & Design Foundations with HTML5, 8 th Edition Instructor Materials Chapter 3 Test Bank

CSS Review. Objec(ves. Iden(fy the Errors. Fixed CSS. CSS Organiza(on

CSS: formatting webpages

Web Designing HTML5 NOTES

UNIT-VI CREATING AND USING FORMS

HTML and CSS: An Introduction

Creating Forms. Starting the Page. another way of applying a template to a page.

Programmazione Web a.a. 2017/2018 HTML5

Creating Forms. Speaker: Ray Ryon

CSS BASICS. selector { property: value; }

Introduction to using HTML to design webpages

Web Focused Programming With PHP

Web Publishing with HTML

Using Dreamweaver CS6

CSS CSS how to display to solve a problem External Style Sheets CSS files CSS Syntax

CSS: The Basics CISC 282 September 20, 2014

ADDING CSS TO YOUR HTML DOCUMENT. A FEW CSS VALUES (colour, size and the box model)

Step 1- Creating a new XHTML Website (2points)

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser.

How to lay out a web page with CSS

CSS Tutorial Part 1: Introduction: A. Adding Style to a Web Page (3 options):

HTML/XML. HTML Continued Introduction to CSS

Styles, Style Sheets, the Box Model and Liquid Layout

Web Forms. Survey or poll Contact us Sign up for an newsletter Register for an event

The Domino Designer QuickStart Tutorial

How to create and edit a CSS rule

Azon Master Class. By Ryan Stevenson Guidebook #8 Site Construction 1/3

Cascading Style Sheet. Styles as Tag Attributes. Syntax. <h1>: what font type/size is used? STYLE = SELECTOR {RULES} Attributes such as bgcolor

Navigation. Websites need a formalized system of links to allow users to navigate the site

c122jan2714.notebook January 27, 2014

Cascading Style Sheets (CSS)

HTML & CSS. Lesson 1: HTML Basics Lesson 2: Adding Tables Lesson 3: Intro to CSS Lesson 4: CSS in more detail Lesson 5: Review

Introduction to Web Programming and Design

Comm 244 Week 3. Navigation. Navigation. Websites need a formalized system of links to allow users to navigate the site

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Session 4. Style Sheets (CSS) Reading & References. A reference containing tables of CSS properties

INTRODUCTION TO CSS. Mohammad Jawad Kadhim

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data.

BEGINNER PHP Table of Contents

cwhois Manual Copyright Vibralogix. All rights reserved.

CSS Scripting and Computer Environment - Lecture 09

Introduction to HTML & CSS. Instructor: Beck Johnson Week 2

CS193X: Web Programming Fundamentals

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

CSC309 Tutorial CSS & XHTML

COSC 2206 Internet Tools. CSS Cascading Style Sheets

Controlling Appearance the Old Way

Overview. Part I: Portraying the Internet as a collection of online information systems HTML/XHTML & CSS

Introduction to Web Technologies

Using Dreamweaver CS6

HTML 5 Tables and Forms

Three Ways to Use CSS:

CSS.

Creating and Building Websites

DAY 4. Coding External Style Sheets

Introduction to Computer Science Web Development

Dreamweaver CS3 Lab 2

Using Dreamweaver CS6

Groupings and Selectors

To illustrate how to set TAG styles the <body> and <h1> tags (for the BODY and the HEADING 1 styles) will be adjusted.

Outline. Link HTML With Style Sheets &6&7XWRULDO &66 ;+70/ (GZDUG;LD

With HTML you can create your own Web site. This tutorial teaches you everything about HTML.

Html basics Course Outline

Introduction to HTML and CSS. Arts and Humanities in the Digital Age 2018 CHASE DTP Dr. Paul Gooding

By Ryan Stevenson. Guidebook #3 CSS

Basic CSS Lecture 17

Summary 4/5. (contains info about the html)

Azon Master Class. By Ryan Stevenson Guidebook #7 Site Construction 2/2

ICT IGCSE Practical Revision Presentation Web Authoring

Build a Subfile with PHP

Web Recruitment Module Customisation

Chapter 1. Introduction to web development and PHP. 2010, Mike Murach & Associates, Inc. Murach's PHP and MySQL, C1

RAVASMARTSOLUTIONS - TECH TIPS

Azon Master Class. By Ryan Stevenson Guidebook #7 Site Construction 2/3

Transcription:

Chapter 3 PHP Basics 3.1 Using PHP Script Tags This section is on using PHP script tags appropriately in your PHP program. The beginning PHP tag (<?php) has an ending tag (?>) and the code in between those tags is a code block or a PHP block. You can open and close these as many of these code blocks as you want in a webpage. I am coding regular HTML, I have to make sure that it is not in one of these PHP blocks or it won't behave very well at all. If I include regular HTML statements in a PHP code block I get an error "unexpected angle bracket." You can't run HTML inside of a PHP block, not by itself. You may generate HTML code from PHP statements like print or echo. For example print "<p>this is a paragraph</p>"; It's important to let HTML be HTML and let PHP be PHP. They have to appear in the correct places, PHP in the PHP blocks, and HTML anywhere outside of them. It will be interpreted correctly. 3.2 Displaying HTML Below I am displaying a very simple page Steve Perry, 2013 1

Figure 3.2.1 Simple Web Page It has a heading and some text. The last line is telling us what is today's date along with the current time. Now if I want to see the time change, I can just reload the page. Let's take a look at the PHP code involved in getting this to happen <?php print "<html>\n"; print "<head><title>0302 Displaying HTML</title>\n"; print "<style>body {font-family: Arial, Helvetica, sans-serif; font-size: 16px;}</style>\n"; print "\n "; print "<body>\n"; print " <h1>0302 Displaying HTML</h1>\n"; print " <p>what are script tags and why do we need them to run PHP?</p>\n"; print "\n "; $today = date('y-m-d h:g:s'); print "<p><b>today is $today </b></p>\n"; Steve Perry, 2013 2

print "</body>\n"; print "</html>\n";?> Figure 3.2.2 Simple Web Page Using too much PHP code In the code above, I've done something rather extreme. I have all of the HTML coming out of PHP print statements. That's not really a good way to do it, but I just wanted to show you that you could and that PHP is basically just writing out HTML to your browser. You never see PHP code when we do a View-Page-Source, you will just see the resultant HTML code. The only code I really had to put in a PHP block was the date function. So the code should really look like this <html> <head><title>0302 Displaying HTML</title> <style>body {font-family: Arial, Helvetica, sans-serif; font-size: 16px;}</style> <body> <h1>0302 Displaying HTML</h1> <p>what are script tags and why do we need them to run PHP?</p> <p><b> <?php $today = date('y-m-d h:g:s'); print "<p><b>today is $today</b></p>";?> </b></p> </body> </html> Steve Perry, 2013 3

Figure 3.2.3 Simple Web Page Using the correct amount of PHP code Now please don't use the font tag (e.g. <font color="blue">). The font tag has been deprecated. And the current way to make colors change of tag is to use a style tag. I'm going to use something called an inline style. If I had a paragraph like so <p>hi there, Steve</p> and I wanted to turn all the text blue I can apply a style to this paragraph <p style="color: blue;">hi there, Steve</p> and it would display something like this Hi there, Steve When I want to affect a bit of text (within a paragraph, for example) I have to wrap it in a special tag called a span tag. So if I did this <p>hi <span style="color: blue">there</span>, Steve</p> it would display something like this Hi there, Steve Steve Perry, 2013 4

3.3 HTML Forms HTML forms are a way that we can gather user information. Users of the web page can enter data, click a button and that will call the PHP program that will use that information and process it somehow and return a new Web page back to the browser. Figure 3.3.1 Simple HTML form It gives the user a place that enter their name and a button to click. If entered my name, Steve, and clicked the submit information button, it would display like so Steve Perry, 2013 5

Figure 3.3.2 Response when user entered "Steve" What if my name wasn't Steve and I was Bob, I wouldn't want to see, "Congratulations Steve", I'd want to see "Congratulations Bob". So let's try that. I'll enter "Bob" and hit the button and there we are Figure 3.3.2 Response when user entered "Bob" Steve Perry, 2013 6

Here's code for the HTML file itself <html> <head> <title>308 Assigning Variables</title> <link rel="stylesheet" type="text/css" href="css/basic.css" /> </head> <body> <h3>what is your name?</h3> <form method="post" action="0303_html_forms.php"> <p> </p> First Name:<br /> <input type="text" name="firstname" size="30" /> </form> </body> </html> <p> <input type="submit" value="submit Information" /> </p> Figure 3.3.3 HTML code for a form The thing that's different from what we've seen before is the beginning and ending form tag (<form> and </form>.) All the elements that are going to be processed on an HTML form must be placed inside these two tags. In fact, it's a good idea to put the ending form tag in right after you code the beginning form tag just to make sure you don't forget it. Steve Perry, 2013 7

An input tag is used to allow the user to enter data, but it's a special type of input tag. To make this input tag display a single line text edit field, the type attribute must have a value of "text". Another attribute I need to set is the name attribute. In this example, I gave it a value of "firstname" to describe what kind of data should be entered there. The PHP program that I will call to process this data will need to use "firstname" to find the text the user entered. Another input tag you need defines the submit button. When you make the type equal to "submit" a submit button appears on the page. The submit button is a very special button in that a program is invoked when you click it. It knows what program to run by using whatever program is specified for the action attribute in the form tag. E.g. <form method="post" action="0303_html_forms.php"> NOTE: Always make the value of the method attribute be equal to "post". Here is the PHP code for 0303_HTML_Forms.php <html> <head> <title>303 HTML Forms</title> <link rel="stylesheet" type="text/css" href="css/basic.css" /> </head> <body> <h3>success!</h3> Steve Perry, 2013 8

<?php $firstname = $_POST['firstname']; print "<p>congratulations $firstname</p>";?> <p>you've just written your first PHP program!</p> </body> </html> Figure 3.3.3 PHP coded for 0303_HTML_Forms.php There are just two lines of PHP code. The first $firstname = $_POST['firstname']; Uses the $_POST function to retrieve the value entered by the user on the Web page and returns it into a PHP variable named $firstname. NOTE: (For you advanced programmers out there.) Technically, the $_POST is not a function, instead it is an array passed to the PHP program by HTTP request, and we are passing the 'key' to this associative array to retrieve its associated 'value'. If you didn't understand that, don't worry, you can think of the $_POST as a function and it will work just fine. The second line of PHP code is print "<p>congratulations $firstname</p>"; which is just printing out a paragraph. Since the $firstname is enclosed within double quotes (along with the other text), PHP will automatically change $firstname to whatever value is stored in it (e..g. "Steve" or "Bob".) The term for that is variable interpolation for those of you getting ready for a job interview! Steve Perry, 2013 9

3.4 Assigning Values Please view videos on class Web site for information on this topic. 3.5 Appending Text Please view videos on class Web site for information on this topic. 3.6 Using the Select Tag Here you will learn how to use a select tag in an HTML form and process it using PHP. A select tag is essentially a drop-down list of different choices we might make In the example below you would have the choice of "administrator", "faculty", or "staff", for the position that someone held. Steve Perry, 2013 10

Figure 3.6.1 Web page with SELECT-OPTION list If I enter 'Steve' for my name and select 'staff', then click the submit information, it displays the following Steve Perry, 2013 11

Figure 3.6.2 Web page response to SELECT-OPTION list Here's code for the HTMLfile <html> <head> <title>305 Using a SELECT tag</title> <link rel="stylesheet" type="text/css" href="css/basic_2.css" /> </head> <body> <h3>using a SELECT tag</h3> Steve Perry, 2013 12

<form method="post" action="0304_using_select.php"> </form> </body> </html> <p> First Name:<br /> <input type="text" name="firstname" size="30"> </p> <p> Position:<br /> <select name="position" size="1"> <option value="administrator"> Administrator </option> <option value="faculty">faculty</option> <option value="staff">staff</option> </select> </p> <p> <input type="submit" value="submit Information"> </p> Figure 3.6.3 HTML code demonstrating a SELECT-OPTION list The bolded text above shows a complete select-option list. In the opening select tag you concede that there are two attributes. The first one is the name attribute where you should specify the name of this tag so that it can be referenced in the PHP program that is called by the form. The next attribute is the size. The size attribute is used to specify how many of the options in the select-option list should appear at any one time. In general, we choose "1". Below the opening select tag are specified three options. They are enclosed in the option tags. Each option tag needs to specify a value attribute which will be used by the PHP program depending on which option is selected by the user. The text that appears between the opening option tag and the ending option tag is what the user Steve Perry, 2013 13

actually sees him a list. The value specified for the value attribute does not have to equal the text that is shown to the user. I made them equal in this example, however, I did not have to. Remember, that the PHP program will use the value specified in the value attribute, not the text that the user sees. NOTE: the options will be displayed in the order you list them. If you want to change that, you can put selected=selected on the option you wish to appear by default. For example <option selected=selected value="faculty">faculty</option> Remember that you must and your select-option list with an ending select tag (e.g </select>) Let's look at the PHP program code below <body> <h3>college Report</h3> <?php $firstname = $_POST['firstname']; $position = $_POST['position']; print "<p>you are <span class='textblue'> $firstname</span> and "; print "your position at the college is: <span class='textblue'> $position </span></p>";?> </body> Figure 3.6.4 PHP code demonstrating response to a SELECT-OPTION list Steve Perry, 2013 14

In the above code option list you see that $position = $_POST['position']; The $_POST is bringing back the value selected in the select-option list that was named "position" and placing it in a variable named $position. So if the user had chosen "staff" in the select-option list $position would be equal to "staff". 3.7 Using the TextArea Tag The text area tag allows a user to enter more than one line of information in a form element and then we can process it with PHP. Here is an example form with a Textarea Figure 3.7.1 Web page with TextArea Steve Perry, 2013 15

This is the HTML code below <html> <head> <title>305 Using the TextArea tag</title> <link rel="stylesheet" type="text/css" href="css/basic_2.css" /> </head> <body> <h3>using the TextArea tag</h3> <form method="post" action="0305_using_textarea.php"> <p> First Name:<br /> <input type="text" name="firstname" size="30"> </p> </form> </body> </html> <p> Comments:<br /> <textarea name="comments" rows="7" cols="50"> </textarea> </p> <p> <input type="submit" value="submit Information"> </p> Figure 3.7.2 HTML code demonstrating a TextArea Steve Perry, 2013 16

This is a little bit different than what we've seen before because the value is not specified in the text area tag as an attribute. The value is whatever text is found between the <textarea> and </textarea> tags. In the example above, it is blank because I want the textarea to be empty when it first opens up so I can enter some data. Let's look at the attributes specified on the textarea tag. First there is the name attribute which I gave a value of "comments". Next there are the rows and cols attributes. The value of the rows attribute indicates how many lines of text will display in the textarea. If you add more rows than indicated in the value of the rows attribute then a vertical scrollbar is automatically generated that allows the user to scroll through all of the text specified. The value of the cols attribute indicates the maximum number of characters can appear on any row. Here is an example of data filled in the form, just before I click the submit button which will send the form to the PHP program on the server. Figure 3.7.3 HTML Web page with TextArea Steve Perry, 2013 17

After I click the submit button the page returned from the server will look like this Figure 3.7.4 HTML Web page returned from server by PHP program Notice that the text in the textarea is grayed out and that there is no submit button. The text is grayed automatically because I specified disabled='disabled' in the <textarea> tag. Look at the PHP code below... <body> <h3>using TextArea</h3> <?php $firstname = $_POST['firstname']; $comments = $_POST['comments']; print "<p>you are <span class='textblue'> $firstname</span> and "; print "your comments about the college are: </p>"; Steve Perry, 2013 18

print "<textarea name='comments' rows='7' cols='50' disabled='disabled' class='textdisabled'>"; print $comments; print "</textarea>";?> </body> Figure 3.7.6 PHP code demonstrating response to a textarea Here is the CSS code. html {margin:0; padding:0;} body { font-family: Arial, Helvetica, sans-serif; color: black; background-color: #F0E68C; } p { } font-size: 16px; input { font-size: 16px; } select { font-size: 16px; } textarea { font-size: 16px; }.textblue { color: blue; } Figure 3.7.7 CSS code Steve Perry, 2013 19

Notice that, in the print statement, I have created the textarea tag with the disabled attribute set and have placed the text the user entered between the <textarea> and </textarea> tags. 3.8 Using Radiobuttons Radiobuttons are those little circular buttons that are displayed on a web page that you use to make choice. The unique characteristic of a radiobutton is that only one radiobutton in a radiobutton group can be selected at a time. In the example below, if I click the part-time radiobutton, the full-time radiobutton is automatically deselected. Figure 3.8.1 Web page with a radiobutton group If I click the submit button, it will look like this Figure 3.8.2 Web page response to a radiobutton choice Let's take look at the HTML code Steve Perry, 2013 20

<body> <h3>using the RadioButtons</h3> <form method="post" action="0306_using_radiobuttons.php"> <p> First Name:<br /> <input type="text" name="firstname" size="30"> </p> <p> Employee Type: <input type="radio" name="etype" value="fulltime" checked="checked"> Fulltime <input type="radio" name="etype" value="parttime"> Partime </p> <p> </p> <input type="submit" value="submit Information"> </form> Figure 3.8.3 HTML code for radiobutton group Notice that I give each radiobutton the same exact value for their name attribute, "etype". This will enforce the behavior that only allows one radiobutton to be selected at a time I give each radiobutton the same value as what the user sees but I didn't have to. This behaves the same way as the option list on the select tag. PHP will use the value specified on the value tag for its processing. Let's look at the PHP code that processes this form Steve Perry, 2013 21

<body> <h3>using RadioButtons</h3> <?php $firstname = $_POST['firstname']; $etype = $_POST['etype'];?> print "<p>you are <span class='textblue'> $firstname</span> and "; print "your employment type is: "; print "<span class='textblue'> $etype </span></p>"; </body> Figure 3.8.4 PHP code that processes a radiobutton group 3.9 Using Checkboxes Please view videos on class Web site for information on this topic. 3.10 Debugging Techniques Please view videos on class Web site for information on this topic. Steve Perry, 2013 22