Question: 1. Print out information of PHP use phpinfo() function. 2. Write a program that check and print odd / even numbers (from number 1 to

1. Print out information of PHP use phpinfo() function.
2. Write a program that check and print odd / even numbers (from number 1 to 100 using for/while loop). Display the results within an HTML table with 2 columns as shown below:
NUMBERS
RESULTS
1
ODD
2
EVEN
3
ODD
HINT: use tags to create a table,
tags for Numbers and Results. Wrap code PHP inside HTML code. For example:
CHECK ODD or EVEN
echo
;
?>
1Odd
3. Do the following steps in one .php file and try to manage the output to be clear to see:
a. Create a dimensional associative array that has at least 8 key/element pairs and var_dump() the array.
b. Print out the array in a table with keys and values (like you do in question 1).
c. Use assort() function to sort the array in ascending order based on the value and var_dump() the new array.
d. Use unset() function to remove an element by key from the array then print the modified array by use var_dump() function. HINT: unset($my_array[key]).
4. Create a two-dimensional array that contains the following information about twitter users:(HINT: the second dimension should be associative, with keys username, tweets, followers, following.) These refer to the number of tweets the user tweeted, how many followers the user has and how many other users this user is following! (The first dimension can be indexed, and you can add Username to the second dimension, or you can have both dimensions be associative, where the Username points to the first person etc. In this case the key joeDoe, for example, has the value array(tweets=>20000,followers=>45,following=>8)
User name
Tweets
Number of Followers
Following
joeDoe
20000
45
8
JohnD
62000
123
160
computerSavy
75
1
25
myTwitterAccount
1800
15
6
a. Print out the array in HTML format using table tags.
b. Sort the array by tweets and print out in table format

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!