In PHP, write the command that would be used to declare the variable x and to assign it the string «Hello World!»? code example
Example: php variables
<?php
$string = 'string';
$number = 1;
?>
<?php
$string = 'string';
$number = 1;
?>