Mind debugging this line for me? Thanks! if ($_GET['page_id'] == 12 OR $_GET['page_id'] == 19 OR $_GET['page_id'] == 20) { PHP: I don't see anything wrong with it. I'd also tried using || instead of OR (|| is my usual)
You could try adding "()": if (($_GET['page_id'] == 12) OR ($_GET['page_id'] == 19) OR ($_GET['page_id'] == 20)) { ... } PHP: Good luck
Thanks, I'll keep that in mind for future reference, that might help keep things a bit more organized. It ended up being that I was trying to print the children pages of a page that didn't exist. Once I solved that issue, they all showed just like they should!