use this
if($id == '' OR $id == '0')
you can also use this only:
if($id)
because if id is nothing or 0 (zero) $id has no value and the if($id) will take it as no value.
you can also use:
if($id > 0)
then anything above $id and it will print out your include_once line.