Is this statement correct in PHP
print ( $name = “matt” );
Yes it is correct, it prints the string “matt” to the browser in addition to assigning “matt” to $name.
Is this statement correct in PHP
print ( $name = “matt” );
Yes it is correct, it prints the string “matt” to the browser in addition to assigning “matt” to $name.