Ok, so I have a header file that has something similar to the following in it:
if (!isset($zip)){
//Ask for ZIP Code Input Here
}
else{
//bla bla
}
Anyway, when the Ask for ZIP Input is called, I want the rest of the page to stop loading altogether. I don't want the index file to load. I don't want the footer to load. I just want that //Ask for ZIP Code Input Here to load and that's that.
Is there anyway I can do this? I have tried splitting up the statement over the header and footer, but of course that doesn't work. Please help!!