PHP - Basics and Execution Model
What will this PHP code output?
<?php $greeting = "Hello World!"; echo $greeting; ?>
<?php $greeting = "Hello World!"; echo $greeting; ?>
$greeting stores the string "Hello World!".echo $greeting; outputs the stored string exactly.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions