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
Explain what does the unlink() function means?
Explain me what is x+ mode in fopen() used for?
What is inheritance in php with example?
Does mysql need php?
Why do we use hooks?
What is curl php?
How many types of session are there?
How long does a php session last for?
Can we use get instead of post?
How can we increase execution time of a php script?
Explain the difference between $var and $$var?
What is the current php version?
Explain the difference between unlink() and unset()?
what is PDO?
Why do we show php code in browser?