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...
Answers were Sorted based on User's Feedback
Answer / naaz
Drop a table:erases the table structure along with any data
in the table fromt the database.Whereas the truncate
command empties all the rows without touching the structure
cheers!!
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / 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 |
How to receive a cookie from the browser?
What's the difference between accessing a class method via -> and via ::?
Is set in php?
Explain how to submit form without a submit button.
Is it possible to extend the execution time of a php script?
Tell me what is use of in_array() function in php?
What is the default session time in PHP and how can I change it?
List out some tools through which we can draw E-R diagrams for mysql.
How can I increase my website session?
Is php 7.0 stable?
Inside a php function, what param needs to be set in order to access a global variable?
Does php need apache?