PHP Taskbook Level 7.1
Given a text file, get the number of characters in it.
Given a form with a textarea and a button. The user enters text into the form. After sending the form, write the entered text to some file.
You are given a text file with words. Write a program that will wrap each word in its own tag span. Write the result to a new file.
You are given a text file with words and fractions of the form 1/2. Write a program that will wrap each fraction in its own tag span. Write the result to a new file.
The user's date of birth is entered into the input in the format year-month-day. After sending the form, display an HTML table on the screen, where the first column will contain all the user's dates of birth, and the second column will contain the corresponding days of the week.
Write a program that will generate the following array:
[
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
]