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>");
?>
A. Swapna Lawrence you are really pretty!
B. Swapna
C. Swapna
D. Swapna Lawrence you are reallypretty!
Answer: Option D
SwapnaLawrenceyou are reallypretty!