what are the rules to be followed at the time of declaring
a variable?,what is the purpose of var_dump()function in
php,syntax of ternary operator()in php,difference between
drop a table and truncate a table...
Answer Posted / priti raj
Variables should starts from _ or alphabets(a-z).
var_dump() prints the array with the datatype also.
syntex of ternary operator() is like
(condition)?'act1':'act2' ;
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
How to find the length of a string?
What is data abstraction in php?
List the different types of print functions available in php?
What is php and sql?
Write a program to display table of a number using php?
Which MySQL function would you use to select a database?
How arrays are used in php?
How does php sessions work?
What is array filter in php?
Why post method is used in php?
What is $globals php?
How do you display the output directly to the browser?
Explain the difference between isset() and empty()?
Which function(s) in PHP computes the difference of arrays?
When is a conditional statement ended with endif?