How is the ternary conditional operator used in php?
No Answer is Posted For this Question
Be the First to Post Answer
What is serialization in php?
Where is the submitted form data stored?
Which of the following represents the proper way to set a session variable? Answer: a. $_SESSION['foo'] = 'bar'; b. session_start(); c. session_set_save_handler ('myopen', 'myclose', 'myread', 'mywrite', 'mydelete', 'mygarbage'); d. $foo = $_SESSION['foo']; 2.When administering MySQL, you should make the data directory accessible via the operating system 3.which statement can be used to determine how the optimizer resolves a query
Explain PHP?
Is PHP an open source software?
why we use @symbol before the variable
Do while loops?
What is difference between core php and framework?
What is the use of "ksort" in php?
What are psrs?
How do you access a get requests url parameter with php?
What is the difference between include and include_once ? Which is one is good in terms of performance ?