The correct syntax of a PHP code is ____
What will be the output of the following PHP code?
<?php
echo chr(52);
?>
What will be the output of the following PHP code?
<?php
echo ord ("hi");
?>
The updated MySQL extension released with PHP 5 is typically referred to as _______________
Which one of the following methods is responsible for sending the query to the database?
Which of the following advanced object-oriented programming (OOP) features is/are not supported by PHP?
Which feature allows us to call more than one method or function of the class in single instruction?
Which one of the following does not describe a validating filter?
In which of the following situations does file-based authentication become inconvenient.
i) small list
ii) large number of user
iii) users are being regularly added
iv) static authentication
What is the output of the following PHP code?
<?php
$num = "123";
if (!filter_var($num, FILTER_VALIDATE_INT))
echo("Integer is not valid");
else
echo("Integer is valid");
?>