How to make my scroll bar show under condition
It seems like the issue might be related to the scope of the $flag variable. Currently, you are setting $flag=true inside the if(isset($_POST[‘bnews’])) block, which means it’s a local variable within that block. To make it accessible outside that block, you should declare it outside the if statement. Additionally, you are trying to use $flag … Read more