Exam 1X2
What does filezilla do
Allows you to CRUD folders/files from your server
Using the shell language: Write the code to create two radio buttons as done in program 4.
<<()>
What does the Putty program do as learned in the class
Allows you to have full remote control of your UIF server, as a user
In addition to HTML what other language was used to create our customer table in our website
PHP
How were we required to display the Front End labels and data from Program2.php on Controller2.php
echo Telephone $Telephone."<br>";
How do you display left justified input fields on program 4
<td style="width: 5%; text-align: left;">Telephone </td>
Which is an example of a single commented line of code in HTML
<!-- this is a test -->
What is the location of the index.html file, as learned in this class
In the first level/folder of the public_html folder
Which is an example of a single commented line of code in PHP
//this is a test
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>
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, hidding
<form method="post" action="includes/page3">
Which of the following clears the front end data as done in program 2
<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
Name the three main opening tags of the dropdown menu used in program 2
<li> <ul> <nav>
Find out which submit button was pressed, as done in Controller2.php
if( $_POST['anyButtonName']) {echo 'You pressed the anyButtonName';}
Write the code to connect and have full access to your mySql
mysql -h ocelot.aul.fiu.edu -u username -p
What is the difference between paragraphs and breaks, as learned in this class
paragraphs terminate a test paragraph and adds an additional line at the end breaks terminate a text line and moves the cursor to the next line
Write the code to create two radio buttons as done in program 2
<input type="radio" name="Coffee"value="American"checked>American <input type="radio" name="Coffee"value="Instant"checked>Instant
Write the code to save a record containing the following fields: Email as the primary key not accepting empty fields of length 20 and 1 textarea input field called one
"INSERT INTO customers (Email, one) VALUES ('$Email','$one')";
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>
Display UIF is Great, in green color, Ariel font and size 2, As done in program 1
<font color=green size=2 face=Ariel>UIF is Great</font>
Write the code to create a checkbox input box as done in program 4
<input type="checkbox" name ="CS" <?php if
In HTML, create a title with your first name, last name
<title>Joe Smith</title>
What does WinSCP do?
Allows you to CRUD folders/files to/from your ocelot server
What is the purpose of the code in Controller2.php
To receive all information from the calling pages and process such data
What does this code do: <a href="includes/page1.html"><center>page1 <a href="includes/page2.html">page2</center></a>
Nothing b/c error
In ocelot.aul.edu what is the name of the folder to place all your programs and folders for your website, as learned in this class
public_html