Hi. In search_function.php you have the following:
PHP Code:
include_once "/home/destroyerx/public_html/poll/booth.php";
ob_start();
require("/home/destroyerx/public_html/poll/booth.php");
$my_poll = ob_get_contents();
ob_end_clean();
This causes the "Cannot redeclare class poll" error because the include_once includes the code and then afterwards there is a require which includes the code again. Remove the include_once line and see what happens.