4854 - WEB MIDTERM
What does the FILEZILLA program do, as learned in this class.
Allows you to Create/Delete/Upload/Download folders/files to/from your FIU server
What does the Putty program do, as learned in this class.
Allows you to have full remote control of your FIU server, as a user
Write the code that finds out which button was pressed, Use two buttons as an example
if ( $_POST['Save'] ) { echo 'save' ; } else if ( $_POST['Find'] ) { echo 'Find'); }
In Ubuntu, what will this code do: ../../../chmod * 755
it will give us an error
Using terminal mode, how do you connect to an external server, as learned in this class
Now move into your public_html folder and create your home file as follows
touch index.html
Which sequence will produce a CSS3 dropdown menu sample, as learned in our class
<nav><ul><li><ul><li></li><li></li><li></li></ul></li></ul></nav>
What does the WINSCP program do?, as learned in this class.
Allows you to Create/Delete/Upload/Download folders/files to/from your ocelot.aul.fiu.edu FIU server.
What is the purpose of the <form> tag, as done in program 2
To sent data to a program being called by it, after creating all fields in it
What is the purpose of the <form> tag, as done in this class
To sent data to a program being called by it, after creating all fields in it
In ocelot.aul.fiu.edu, what is the name of the folder where you place all your programs and folders for your website, as learned in this class.
public_html
How do you extract data from your Program2.php Front End
$Telephone = $_POST['Telephone'];
Comments for HTML
<! - - this a comment - - >
How to let the browser know that you are using html 5
<! DOCTYPE html>
Which command tell us that we are using HTML5
<!DOCTYPE html>
Write the code that will display an image called theGraph.png that when pressed, it will load the web page called fiu.edu
<a href="http://fiu.edu"><img src="theGraph.png" /></a>
Open and close html body
<body> </body>
Open and close html head
<head> </head>
Create one table with one row and two columns as done in Program 2
<table> <tr> <td> </td> <td> </td> </tr> </table>
How do you display right justified input fields on Program 2
<td style="width: 5%; text-align: right;">Telephone </td>
Write the code for a textarea input box as done in program 2
<textarea name="SpecialNeeds" rows="5" cols="42"> any data </textarea>
Open and close html title
<title> </title>
In HTML, create a title with your first name, last name. Example Joe Smith
<title>Joe Smith</title>
In addition to HTML5 what other language was used in the About.php used in our class
CSS3
What does this line of code do: <a href="includes/page1.html"><center>page 1</center></a> <a href="includes/page2.html"><center>page 2</center></a>
Displays page 1, page 2 vertically centered
What does HTML stands for, or what is the meaning of HTML
Hyper Text Markup Language
What does html stand for
Hyper Text Markup Language
What does php stand
Hypertext preprocessor
What is the location of the index.html file, as learned in this class.
In the first level of the public_html folder.
What is the purpose of the code in Controller2.php
Talk and grab the data from the front end and also pass data from other programs to the front end To Receive all information from the calling pages and process such data
In which operating system(s) does PUTTY work, as learned in this class.
Various current Operating Systems
In which operating system(s) does WINSCP work, as learned in this class.
Windows
If in your home directory you do not have the public_html folder create it as follows
mkdir public_html
What is the difference between paragraphs and breaks
paragraphs terminates a text paragraph and adds an additional empty line at the end of the text, breaks terminate a section of text, and moves cursor to the next line
In Linux, what is the name of the folder to place all your programs and folders for your website, used in this class.
public_html
Assume that you are at the directory/folder were the index.html file is located. Using a hyperlink named page 3, call the program located at includes/page3.html
<a href="includes/page3.html">page 3</a>
Per the work done in our website, which line of code is correct
<ul><nav><li> Hello World </li></nav></ul>
Comments for PHP
/* this a comment */
Which is an example of a commented line of code in PHP
/*this is a test*/
Which is an example of a single commented line of code in PHP
//this is a test
Being inside the includes folder, create a CENTERED horizontal menu using hyperlinks for page4 and page3
<center><a href="page4.html">page4</a> <a href="page3.html">page3</a></center>
Display FIU is Great in green color, Ariel font and size 2, As done in program 1
<font color=green size=2 face=Ariel>FIU is Great</font>
Main parts of HTML
<head>, <title> and <body>
What is the purpose of the controller2.php page, as done in program 2
To process the input of the program2.php front end
Give access rights to your home file as follows
chmod 755 index.html
Assume that you are in the same folder where the index file is found, create the heading of a form to call page3, located in the includes folder, passing its data, hiding.
<form method="post" action="includes/page3">
open and close html document
<html> </html>
Write a html program that will have the two main parts in html, as learned in this class,
<html> <head> </head> <body> </body> </html>
Which of the following clears the Front End data as done in Program2
<input name="clear" type="reset" value"ClearScreen">
Write the code to create two checkboxes input box as done in program 2.
<input type="checkbox" name="IT" value="IT" > IT <input type="checkbox" name="CS" value="CS" > CS
Create one input text field named telephone as done in program 2
<input type="text" name="telephone" value="">
Name the three main opening tags of the dropdown menu used in program 3
<li> <ul> <nav>