I have a strange problem that i can not solved.
Code: Select all
<?php
if(cond1){
if(cond2){
}else{
echo "here1";
require('show_result.php');
}
}else{
echo "here2";
require('show_result.php');
}
?>Code: Select all
<?php
echo "here3";
?>the result which is :
here2
How it can be possiple to give such an output?
I was a little bit confused, and so many hours has been passed without sleep. If anyone have an idea, please share with me.