2. The attack which involves the insertion of malicious code into a page frequented by other users is known as.
3. When you use the $_GET variable to collect data, the data is visible to.
4. When you use the $_POST variable to collect data, the data is visible to.
5. Which variable is used to collect form data sent with both the GET and POST methods?
6. Which one of the following should not be used while sending passwords or other sensitive information?
7. Which function is used to remove all HTML tags from a string passed to a form?
8. What will be the value of the variable $input in the following PHP code?
<?php
$input = "Swapna<td>Lawrence</td>you are really<i>pretty</i>!";
$input = strip_tags($input,"<i></i>");
?>
<?php
$input = "Swapna<td>Lawrence</td>you are really<i>pretty</i>!";
$input = strip_tags($input,"<i></i>");
?>