Home / Programming MCQs / PHP MCQs / Question
R
Q. What will be the output of the following PHP code?
<?php $counter = 1; while ($counter++ <= 5) { echo $counter, ","; $counter++; } ?>
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Which of the following function is not listed in PHP6?
What will be the output of the following PHP code ?
What is the result of the following PHP code?
Which is not a Built-in function for string in PHP?
PHP’s numerically indexed array can be started with which of the following position?
Which is the correct syntax of defining function return type in PHP?
What is the correct syntax of PHP base_convert() function?
Which of the following PHP function is used to generate unique id?
Discusssion
Login to discuss.