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
Answer Posted / palaniraja.wordpress.com
3.which statement can be used to determine how the optimizer
resolves a query
EXPLAIN
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Is php dead 2019?
What is a namespace in php?
Tell me how can you pass a variable by reference?
What is array filter php?
Tell me is it possible to submit a form with a dedicated button?
Is php a web server?
What are the new features available in php 7?
How can I load data from a text file into a table?
What are the benefits of using queries?
What is difference between isset and empty in php?
Tell me how can we determine whether a php variable is an instantiated object of a certain class?
How to check whether a number is prime or not?
What is the name of scripting engine in php?
What's the difference between accessing a class method via -> and via ::?
How to check a variable is an array or not in php?