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
Answers were Sorted based on User's Feedback
Answer / ramji
Question: When administering MySQL, you should make the
data directory accessible via the operating system ....
Answer 1: only to the "mysql" user
Answer 2: only to the "root" user
Answer 3: to the "mysql" user, and also to the "webserver" user
Answer 4: to the "mysql" user, and also to people who are
installing applications that use MySQL
| Is This Answer Correct ? | 73 Yes | 10 No |
Answer / p.swamy
session variable answer is:
a. $_SESSION['foo'] = 'bar';
| Is This Answer Correct ? | 31 Yes | 2 No |
Answer / rubinthomas
1.In order to set a session variable u must first declare
the session_start() function as the first statement when u
execute your page after which can u assign or manipulate
session variables $_SESSION["foo"] = 'bar';
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / savitha
session variable answer is:
a. $_SESSION['foo'] = 'bar';
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / 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 |
What is the PHP predefined variable that tells the What types of images that PHP supports?
how to get substring of string without using substr() function in php ????
What is the use of header() function in php?
How is the comparison of objects done in php?
Which character is used to match exactly one character?
client side scripting language Vs server side scripting language
How to display your correct URL of the current web page?
how to do connectivity of 2 dbs in PHP script?
Why using the htaccess file
Tell me is it possible to remove the html tags from data?
Tell me what are the encryption techniques in php?
How to create a session? How to set a value in session?