A _______ ia a logical object created by the PHP engine to allow you to preserve data across subsequent HTTP requests
Session
Cookie
Abstract
SHOW ANSWERWhich function will destroy all variables in the session?
session_destroy()
SESSION_destory()
session_unregister()
SHOW ANSWERWhich function will unregister a particular session variable?
session_unregister()
session_unset()
unregister()
SHOW ANSWERPick out the odd one
session_unregister()
session_destroy()
session_unset()
SHOW ANSWERWhich function is similar to session_destroy()?
session_unset()
session_unregister()
session_remove()
SHOW ANSWERWhich environment variable is used for access cookies?
$_COOKIE[]
setcookie()
$_COOKIES[]
SHOW ANSWERWhich environment variable is used for access session?
$_SESSION[ ]
session_start() ]
$_session[ ]
SHOW ANSWERWhat is the maximum number of cookies that can be allowed to a webpage?
20
10
12
SHOW ANSWERWhich state maintenance technique is used to pass a value from one page to another with out storing?
Querystring
Cookie
Session
SHOW ANSWERWhich of the following method is used for accessing a querystring value?
$_GET[ ]
request.querystring()
$_QUERYSTRING[ ]
SHOW ANSWERA cookie is supports:
all
Used to identify a user in a session
A smallfile the application inserts on the users computer
SHOW ANSWERPick the odd one out.
Querystring
Cookie
Session
SHOW ANSWERThe setcookie() consists of how many attributes?
3
2
1
SHOW ANSWER