Correct Answer: echo
Explanation:
Note: This Question is unanswered, help us to find answer for this one
PHP Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More PHP MCQ Questions
Syntax to compare two values?
What is the name of the PHP configuration file?
How do you create an object ?
How you fetch this ? $connect = mysqli_connect('ip','test','pass'); msqli_query($connect,'use test'); $query = msqli_query($connect,'SELECT name FROM question');
Which splits a string to an array ?
Which keyword causes a conditional loop to skip to the start of the next iteration?
What does this function do: function my_func($variable) { return (is_numeric($variable) && $variable % 2 == 0); }
The comparison $a <> $b means
Which variable assignment is 'by reference' in PHP?
The following would return? extract( array( 'sexy' => 'a', 'and' => 'b', 'i' => 'c', 'know' => 'd', 'it' => 'e' ) ); return $sexy.$and.$i.$know.$it;