Answer:
INPUT File:
populations.txt
Dhaka, 23 million
Bangaluru, 21 million
New York, 9 million
Emporia, 23 thousand
CODE: population.php
<html>
<head>
<style>
table
{
border-style:solid;
border-width:1px;
border-color:blue;
}
</style>
</head>
<body bgcolor="#EEFDEF">
<?php
$filename = 'populations.txt';
$contents = file($filename);
$data =array();
foreach($contents as $line) {
$data[explode(",",$line)[0]]=explode(",",$line)[1];
}
echo "<table
border='1'><tr><th>Key</th><th>Value</th></tr>";
foreach($data as $x => $x_value) {
echo "<tr><td>" . $x . "</td><td>" .
$x_value."</td></tr>";
}
echo "</table>";
echo "</br></br>Reading on Reverse Using
sprintf</br>";
foreach($data as $x => $x_value) {
$txt = sprintf("%s, %s.",$x_value,$x);
echo $txt."</br>";
}
?>
</body>
</html>
Read a file called populations.txt and populate a php associative array with the values read from...
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 <table> tags to create a table, <th> tags for ‘Numbers’ and ‘Results’. Wrap code PHP inside HTML code. For example: <html> <title>CHECK ODD or EVEN</title> <body> <table> <?php...
I am having problems with reading a file into an array.
This is my code.
This is what I get when I run my program.
But this is my text file I am reading.
I tried everything and it seems to be reading in the last digit
of the file. I want to read in their names line by line into an
array and ultimatly also read in the scores line by line.
1 E/7 Programming Assignment 6.cpp Defines the...
This lab will combine reading data from a file and searching the
array to find a specific value.
Assignment
Write a program that reads in a file full of strings into an
array, and prompts the user for a string to find in the array. The
program should loop until a sentinel value (such as -1) is
entered.
After looping in main() for the input, write a search function,
with the following prototype:
int findWord(string [], int, string);
with arguments...
Write a program that check odd / even numbers (from number 1 to
100). Display the results within an HTML table with 2 columns: one
for odd number and one for even numbers.
NUMBERS RESULTS ODD EVEN ODD 2 HINT: use <table> tags to create a table, <th> tags for 'Numbers' and 'Results'. Wrap code PHP inside HTML code. For example: <html> <title>CHECK ODD or EVEN</title> <body> <table> ?php echo "<tr><td>l</td><td>Odd</td</tr>"; </table> </body </html 2. Do the following steps in...
For your second program, please read the data from the input file directly into an array. (You may safely dimension your array to size 300.) Then close the input file. All subsequent processing will be done on the array. Your program should have two functions besides main(). The first function will print out the contents of the array in forward order, 10 numbers per line, each number right justified in a 5 byte field. The second function will print out...
Modify your program from Learning Journal Unit 7 to read dictionary items from a file and write the inverted dictionary to a file. You will need to decide on the following:How to format each dictionary item as a text string in the input file.How to covert each input string into a dictionary item.How to format each item of your inverted dictionary as a text string in the output file.Create an input file with your original three-or-more items and add at...
<html> <!--This is the form for an instructor to upload a file having the grade of students in a class--> <body> <h2>Upload Student Grade</h2> <form action="1.php" method="POST" enctype="multipart/form-data"> Instructor's First Name:<input type="text" name="first"><br><br> Instructor's Last Name: <input type="text" name="last"><br><br> Instructor's Department Name:<input type="text" name="department"><br><br> Upload student grade: <input type="file" name="image" /><br><br> <input type="submit"/> </form> </body> </html> //***************************************************Q1**************************************************************************** /*(((( Q1)))). (18 points) Add the code below that * uploads the file containing the students'...
[C++]
Outline:
The movie data is read from a file into an array of structs and
is sorted using the Selection Sort method and the search is done
using the Binary Search algorithm with the year of release as key.
This assignment upgrades to an array of pointers to the database
elements and converts the Selection Sort and Binary search
procedure on the database to selection sort and binary search on
the array of pointers to the database.
Requirements:
Your...
JAVA Code: Complete the program that reads from a text file and counts the occurrence of each letter of the English alphabet. The given code already opens a specified text file and reads in the text one line at a time to a temporary String. Your task is to go through that String and count the occurrence of the letters and then print out the final tally of each letter (i.e., how many 'a's?, how many 'b's?, etc.) You can...