A bit more code or explaining of what you want to achieve would be helpful..
The thing you can't get to work is it anything like this:
PHP Code:
<html>
<?php
if(isset($value1))
echo "Welcome to ";
?>
My place is so rocking.. And I'm
<?php
if(isset($value2))
echo " Sorry ";
?>
with ....
</html>
or is it anything like
PHP Code:
<html>
<?php
if(isset($value1))
{
echo "Welcome to ";
unsset($args);
}
?>
My site is so rocking... An I'm
<?php
if(isset($value2))
echo " Sorry ";
?>
with...
</html>
Because the last one, will not have a $value2 in it, since you've unset every argument parsed to the page..
But as I started out with, a few more lines or explaining will sure help the understanding of why/how you are trying this..