Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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:
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 SolutionThere are 3 Steps involved in it Step: 1Get Instant Access to Expert-Tailored SolutionsSee step-by-step solutions with expert insights and AI powered tools for academic success Step: 2Step: 3Ace Your Homework with AIGet the answers you need in no time with our AI-driven, step-by-step assistance Get Started |
---|