is it possible to call an include from within an include
for example
index.php
include("includes/poll.php");
poll.php
include("vote/includes/connectdb.php");
can u do this? my includes/poll.php page appears fine, but when i call index.php i get db connect errors?
😃 TIA
TGixer