For expample i have following code with one php script ,then part of html code and then again php script. When i use variable $v,that variable saves value for then next part of php code. How can i write script to purufy variable value for the next <?php invoke?
<html>
<body>
<?php
$v = '1';
?>
<div class="html-something">
<div>
<?php
echo $v;//i want $v to be undefined
?>
</body>
</html>