I'm trying to find an odd code.
I have a menu that will swap with our login if now logged in.
I can't just "take out" the menu code from update.php because of use of common headers.
but on this page it's causing problems with our updating program, (can't handle the extra text fields on page).
looking for a something like...
//$location being the current page url
if($location == update.php){
echo"Please login in";
}else
//original login in script (causing the problem)
Something like this would eliminate the issue and leaft all other pages unchanged.
Any ideas?