Test your understanding of PHP basics with fill in the blanks questions. Perfect for beginners, students, and interview preparation. Strengthen your PHP knowledge now!
script
A script is a PHP file that contains code to be executed on the server, often generating dynamic content for web pages.
echo
The echo statement is used to output one or more strings to the browser, displaying content on the web page.
variable
A variable in PHP is used to store data, and its value can change during the execution of the script.
phpinfo
The phpinfo() function outputs a large amount of information about the current state of PHP, including loaded extensions and configuration settings.
newline character
In PHP, you can use the newline character ( ) to start a new line within the same statement, improving readability.