AMA University Answers
Login
Register
AMA OED
Courses
IT
IT-6314
Which of the following is the...
Which of the following is the incorrect way to declare a PHP variable?
$a_Number = 9
Correct
Feedbacks
JustMastodon
-
2 years ago
Upvoted this question
Similar IT-6314 questions
What data type will PHP automatically convert the following variable to:? $aVariable = 99;
What data type will PHP automatically convert the following variable to: $aVariable = "Robert";
Which operator will check if two variables are the same?
What will be the output of the following PHP code ? <?php for($x=0;$x<=10;$x++) { echo"The number is...
What will be the output of the following PHP code ? <?php for($i++;$i==1;$i=2) print"In for loop ";...
What will be the output of the following PHP code ? <?php for($x=-1;$x<10;--$x) { print$x; } ?>