a) remove_tags() b) strip_tags() c) tags_strip() d) tags_remove() Answer: b ...
View QuestionWhich one of the following should not be used while sending passwords or other sensitive information?
a) GET b) POST c) REQUEST d) NEXT Answer: a Explanation: The information sent from a form ...
View QuestionWhich variable is used to collect form data sent with both the GET and POST methods?
a) $BOTH b) $_BOTH c) $REQUEST d) $_REQUEST Answer: d Explanation: In PHP the global variable $_REQUEST ...
View QuestionWhen you use the $_POST variable to collect data, the data is visible to ___________
When you use the $_POST variable to collect data, the data is visible to ___________ a) none b) ...
View QuestionWhen you use the $_GET variable to collect data, the data is visible to ___________
When you use the $_GET variable to collect data, the data is visible to ___________ a) none b) ...
View QuestionThe attack which involves the insertion of malicious code into a page frequented by other users is known as _______________
a) basic sql injection b) advanced sql injection c) cross-site scripting d) scripting Answer: c Explanation: The ...
View QuestionWhich two predefined variables are used to retrieve information from forms?
a) $GET & $SET b) $_GET & $_SET c) $__GET & $__SET d) GET & SET Answer: ...
View QuestionWhich function displays the web page’s most recent modification date?
a) lastmod() b) getlastmod() c) last_mod() d) get_last_mod() Answer: b Explanation: The function getlastmod() gets the time ...
View QuestionWhich one of the following function is useful for producing a timestamp based on a given date and time?
a) time() b) mktime() c) mrtime() d) mtime() Answer: b Explanation: The function mktime() returns the Unix ...
View QuestionIf the format is F then which one of the following will be returned?
a) Complete text representation of month b) Day of month, with leading zero c) Daylight saving time d) ...
View Question