Пример #1
0
namespace HRNParis\ajax;

use HRNParis\sponsors;
use HRNParis\speakers;
use HRNParis\agenda;
use HRNParis\main;
include_once 'sponsors_main.php';
include_once 'speakers_main.php';
include_once 'agenda_main.php';
include_once 'main.php';
/*///////////// 
Add new Sponsor
///////////////*/
if (isset($_POST['action']) && $_POST['action'] == 'get_search_data') {
    $the_main = new sponsors\sponsors_main();
    $result = $the_main->get_search_data();
    if (isset($result)) {
        echo $result;
    }
}
// new sponsor
/*///////////// 
Display Sponsor
///////////////*/
if (isset($_POST['action']) && $_POST['action'] == 'sponsor_display') {
    $the_main = new sponsors\sponsors_main();
    $result = $the_main->sponsors2($_POST['tag']);
    if (isset($result)) {
        echo $result;
    }
}