b_g:
Thank you for the quick and knowledgeable reply - your suggestion was tried but resulted in an odd error:
Code:
1
Warning: main(results.inc.php) [function.main]: failed to open stream: No such file or directory in . . .
etc., etc.
What's odd is that the string in question "1" appears just before the warning but does not appear as it should between the include request e.g. results-"1"-.inc.php. Regardless you've taken me one step closer to my goal and I do appreciate it! Do you see an obvious oversight on my part
Code:
<?php
if (!isset($_COOKIE['voted1'])){
include('poll'.the_ID().'.inc.php'); }
else {
include('results'.the_ID().'.inc.php'); }
?>
PS, the_ID is the page numbers so this would work perfectly, if . . . it . . . worked . . . perfectly.
Bookmarks