HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/forbes/contact-form/img/
Upload File :
Current File : /home/islapiiu/sites/forbes/contact-form/img/post-and-get.tar
logout.php000064400000000240150764335370006577 0ustar00<!DOCTYPE html>
<?php
include '../class/include.php';

$CUSTOMER = new Customer(NULL);

if ($CUSTOMER->logOut()) {
    header('Location: ../index.php');
}
?>
 
service.php000064400000007603150764335370006740 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $SERVICE = new Service(NULL);
    $VALID = new Validator();

    $SERVICE->title = mysql_real_escape_string($_POST['title']);
    $SERVICE->short_description = mysql_real_escape_string($_POST['short_description']);
    $SERVICE->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/service/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SERVICE->image_name = $imgName;

    $VALID->check($SERVICE, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $SERVICE->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header("location: ../view-service-photos.php?id=" . $SERVICE->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
//    $result = $SERVICE->create();
//      if ($result) {
//        header("location: ../create-service.php?id=" . $SERVICE->id."&&message=10");
//    } else {
//        
//    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/service/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SERVICE = new Service($_POST['id']);

    $SERVICE->image_name = $_POST['oldImageName'];
    $SERVICE->title = mysql_real_escape_string($_POST['title']);
    $SERVICE->short_description = mysql_real_escape_string($_POST['short_description']);
    $SERVICE->description = mysql_real_escape_string($_POST['description']);

    $VALID = new Validator();

    $VALID->check($SERVICE, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $SERVICE->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $SERVICE = Service::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}login.php000064400000001021150764335370006374 0ustar00<?php
 
include_once(dirname(__FILE__) . '/../../class/include.php');

$USER = new User(NULL);

$username = filter_var($_POST['username'], FILTER_SANITIZE_STRING);
$password = filter_var($_POST['password'], FILTER_SANITIZE_STRING);


if (empty($username) || empty($password)) {
    header('Location: ../login.php?message=6');
    exit();
}

if ($USER->login($username, $password)) {
    header('Location: ../?message=5');
    exit();
} else {
    header('Location: ../login.php?message=7');
    exit();
}

activity.php000064400000007557150764335370007144 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ACTIVITY = new Activities(NULL);
    $VALID = new Validator();

    $ACTIVITY->title = mysql_real_escape_string($_POST['title']);
    $ACTIVITY->short_description = mysql_real_escape_string($_POST['short_description']);
    $ACTIVITY->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/activity/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ACTIVITY->image_name = $imgName;

    $VALID->check($ACTIVITY, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ACTIVITY->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header("location: ../view-activity-photos.php?id=" . $ACTIVITY->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/activity/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ACTIVITY = new Activities($_POST['id']);

    $ACTIVITY->image_name = $_POST['oldImageName'];
    $ACTIVITY->title = mysql_real_escape_string($_POST['title']);
    $ACTIVITY->short_description = mysql_real_escape_string($_POST['short_description']);
    $ACTIVITY->description = mysql_real_escape_string($_POST['description']);

    $VALID = new Validator();
    $VALID->check($ACTIVITY, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ACTIVITY->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $ACTIVITY = Activities::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}photo-album.php000064400000007152150764335370007526 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $PHOTO_ALBUM = new PhotoAlbum(NULL);
    $VALID = new Validator();

    $PHOTO_ALBUM->title = mysql_real_escape_string($_POST['title']);
    $PHOTO_ALBUM->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/photo-album/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $PHOTO_ALBUM->image_name = $imgName;

    $VALID->check($PHOTO_ALBUM, [
        'title' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);


    if ($VALID->passed()) {
        $PHOTO_ALBUM->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/photo-album/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $PHOTO_ALBUM = new PhotoAlbum($_POST['id']);

    $PHOTO_ALBUM->image_name = $_POST['oldImageName'];
    $PHOTO_ALBUM->title = mysql_real_escape_string($_POST['title']);
    $PHOTO_ALBUM->description = mysql_real_escape_string($_POST['description']);

    $VALID = new Validator();

    $VALID->check($PHOTO_ALBUM, [
        'title' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $PHOTO_ALBUM->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $PHOTO_ALBUM = PhotoAlbum::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}tour-normal-photo.php000064400000011446150764335370010706 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $TOUR_PACKAGE_PHOTO = new TourPackagePhotosNormal(NULL);
    $VALID = new Validator();

    $TOUR_PACKAGE_PHOTO->tourpackage = $_POST['id'];
    $TOUR_PACKAGE_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $dir_dest = '../../upload/tour-package/gallery/';
    $dir_dest_thumb = '../../upload/tour-package/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $TOUR_PACKAGE_PHOTO->image_name = $imgName;

    $VALID->check($TOUR_PACKAGE_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $TOUR_PACKAGE_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/tour-package/gallery/';
    $dir_dest_thumb = '../../upload/tour-package/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $TOUR_PACKAGE_PHOTO = new TourPackagePhotosNormal($_POST['id']);

    $TOUR_PACKAGE_PHOTO->image_name = $_POST['oldImageName'];
    $TOUR_PACKAGE_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $VALID = new Validator();
    $VALID->check($TOUR_PACKAGE_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $TOUR_PACKAGE_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $TOUR_PACKAGE_PHOTO = TourPackagePhotosNormal::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}attraction.php000064400000007633150764335370007453 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ATTRACTION = new Attraction(NULL);
    $VALID = new Validator();


    $ATTRACTION->title = mysql_real_escape_string($_POST['title']);
    $ATTRACTION->short_description = mysql_real_escape_string($_POST['short_description']);
    $ATTRACTION->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/attraction/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ATTRACTION->image_name = $imgName;

    $VALID->check($ATTRACTION, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ATTRACTION->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();
        header("location: ../view-attraction-photos.php?id=" . $ATTRACTION->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/attraction/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ATTRACTION = new Attraction($_POST['id']);


    $ATTRACTION->image_name = $_POST['oldImageName'];
    $ATTRACTION->title = mysql_real_escape_string($_POST['title']);
    $ATTRACTION->short_description = mysql_real_escape_string($_POST['short_description']);
    $ATTRACTION->description = mysql_real_escape_string($_POST['description']);

    $VALID = new Validator();
    $VALID->check($ATTRACTION, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ATTRACTION->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $ATTRACTION = Attraction::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}    tour-dates.php000064400000011327150764335370007365 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $TOUR_DATE = new TourDate(NULL);
    $VALID = new Validator();

    $TOUR_DATE->tour = $_POST['id'];
    $TOUR_DATE->title = mysql_real_escape_string($_POST['title']);
    $TOUR_DATE->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/tour-package/date/';
    $dir_dest_thumb = '../../upload/tour-package/date/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $TOUR_DATE->image_name = $imgName;

    $VALID->check($TOUR_DATE, [
        'title' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
        'description' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $TOUR_DATE->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

         header("location: ../view-tour-date-photos.php?id=" .$TOUR_DATE->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/tour-package/date/';
    $dir_dest_thumb = '../../upload/tour-package/date/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $TOUR_DATE = new TourDate($_POST['id']);

    $TOUR_DATE->image_name = $_POST['oldImageName'];
    $TOUR_DATE->title = filter_input(INPUT_POST, 'title');
    $TOUR_DATE->description = filter_input(INPUT_POST, 'description');

    $VALID = new Validator();
    $VALID->check($TOUR_DATE, [
        'title' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
        'description' => ['required' => TRUE],
    ]);

    if ($VALID->passed()) {
        $TOUR_DATE->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $TOUR_DATE = TourDate::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}service-photo.php000064400000011301150764335370010055 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $SERVICE_PHOTO = new ServicePhoto(NULL);
    $VALID = new Validator();

    $SERVICE_PHOTO->service = $_POST['id'];
    $SERVICE_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $dir_dest = '../../upload/service/gallery/';
    $dir_dest_thumb = '../../upload/service/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SERVICE_PHOTO->image_name = $imgName;

    $VALID->check($SERVICE_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $SERVICE_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/service/gallery/';
    $dir_dest_thumb = '../../upload/service/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $SERVICE_PHOTO = new ServicePhoto($_POST['id']);

    $SERVICE_PHOTO->image_name = $_POST['oldImageName'];
    $SERVICE_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $VALID = new Validator();
    $VALID->check($SERVICE_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $SERVICE_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $SERVICE_PHOTO = ServicePhoto::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}product.php000064400000007331150764335370006756 0ustar00<?php



include_once(dirname(__FILE__) . '/../../class/include.php');



if (isset($_POST['create'])) {



    $PRODUCT = new Product(NULL);

    $VALID = new Validator();

   

    $PRODUCT->type = $_POST['id'];

    $PRODUCT->name = $_POST['name'];

    $PRODUCT->short_description = $_POST['short_description'];

    $PRODUCT->description = $_POST['description'];



    $dir_dest = '../../upload/product-type/product/';



    $handle = new Upload($_FILES['image']);



    $imgName = null;



    if ($handle->uploaded) {

        $handle->image_resize = true;

        $handle->file_new_name_ext = 'jpg';

        $handle->image_ratio_crop = 'C';

        $handle->file_new_name_body = Helper::randamId();

        $handle->image_x = 360;

        $handle->image_y = 333;



        $handle->Process($dir_dest);



        if ($handle->processed) {

            $info = getimagesize($handle->file_dst_pathname);

            $imgName = $handle->file_dst_name;

        }

    }



    $PRODUCT->image_name = $imgName;



    $VALID->check($PRODUCT, [

        'name' => ['required' => TRUE],

        'short_description' => ['required' => TRUE],

        'description' => ['required' => TRUE],

        'image_name' => ['required' => TRUE]

    ]);



    if ($VALID->passed()) {

        $PRODUCT->create();



        if (!isset($_SESSION)) {

            session_start();

        }

        $VALID->addError("Your data was saved successfully", 'success');

        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    } else {



        if (!isset($_SESSION)) {

            session_start();

        }



        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    }

}



if (isset($_POST['update'])) {

    $dir_dest = '../../upload/product-type/product/';



    $handle = new Upload($_FILES['image']);



    $imgName = null;



    if ($handle->uploaded) {

        $handle->image_resize = true;

        $handle->file_new_name_body = TRUE;

        $handle->file_overwrite = TRUE;

        $handle->file_new_name_ext = FALSE;

        $handle->image_ratio_crop = 'C';

        $handle->file_new_name_body = $_POST ["oldImageName"];

        $handle->image_x = 360;

        $handle->image_y = 333;



        $handle->Process($dir_dest);



        if ($handle->processed) {

            $info = getimagesize($handle->file_dst_pathname);

            $imgName = $handle->file_dst_name;

        }

    }



    $PRODUCT = new Product($_POST['id']);



    $PRODUCT->image_name = $_POST['oldImageName'];

    $PRODUCT->name = $_POST['name'];

    $PRODUCT->short_description = $_POST['short_description'];

    $PRODUCT->description = $_POST['description'];



    $VALID = new Validator();

    $VALID->check($PRODUCT, [

        'name' => ['required' => TRUE],

        'short_description' => ['required' => TRUE],

        'description' => ['required' => TRUE],

        'image_name' => ['required' => TRUE]

    ]);



    if ($VALID->passed()) {

        $PRODUCT->update();



        if (!isset($_SESSION)) {

            session_start();

        }

        $VALID->addError("Your changes saved successfully", 'success');

        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    } else {



        if (!isset($_SESSION)) {

            session_start();

        }



        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    }

}



if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $PRODUCT = Product::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);

    }

}room-photo.php000064400000011175150764335370007402 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ROOM_PHOTO = new RoomPhoto(NULL);
    $VALID = new Validator();

    $ROOM_PHOTO->room = $_POST['id'];
    $ROOM_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $dir_dest = '../../upload/room/gallery/';
    $dir_dest_thumb = '../../upload/room/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ROOM_PHOTO->image_name = $imgName;

    $VALID->check($ROOM_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ROOM_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/room/gallery/';
    $dir_dest_thumb = '../../upload/room/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $ROOM_PHOTO = new RoomPhoto($_POST['id']);

    $ROOM_PHOTO->image_name = $_POST['oldImageName'];
    $ROOM_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $VALID = new Validator();
    $VALID->check($ROOM_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ROOM_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $ROOM_PHOTO = RoomPhoto::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}error_log000064400001422150150764335370006503 0ustar00[20-Dec-2018 22:46:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 22:46:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 09:16:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 09:16:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:29:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:29:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 09:59:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 09:59:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:31:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:31:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:32:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:32:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:43:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:43:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:44:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:44:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:45:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:45:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:46:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:46:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:47:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:47:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:51:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:51:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:55:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[20-Dec-2018 23:55:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 00:29:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 00:29:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:13:47 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 01:13:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:13:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:14:15 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 01:14:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:14:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:14:47 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 01:14:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:14:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:15:19 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 01:15:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 01:15:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:21:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:21:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 13:51:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 13:51:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:30:41 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 03:30:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:30:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:35:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:35:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:35:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:40:21 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 03:40:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:40:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:41:27 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 03:41:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 03:41:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:06:03 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 04:06:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:06:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:24:04 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 04:24:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:24:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:33:46 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 04:33:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:33:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:38:52 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 04:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:40:04 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 04:40:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:40:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:40:18 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 04:40:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 04:40:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:00:37 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:00:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:00:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:01:16 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:01:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:01:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:02:45 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:02:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:02:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:06:18 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:06:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:06:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:09:43 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:09:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:09:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:10:49 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:10:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:10:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:34:22 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:34:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:34:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:34:57 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:34:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:34:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:38:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:38:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:38:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:39:56 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:39:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:39:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:40:18 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:40:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:40:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:40:42 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:40:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:40:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:44:34 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:44:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:44:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:48:15 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:48:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:48:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:48:53 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:48:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:48:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:57:36 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:57:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:57:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:58:00 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 05:58:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:58:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:58:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:58:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 05:58:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:05:03 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:05:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:05:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:12:24 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:12:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:12:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:12:43 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:12:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:12:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:13:01 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:13:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:13:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:13:33 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:13:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:13:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:14:15 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:14:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:14:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:15:09 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:15:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:15:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:20:20 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:20:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:20:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:25:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:25:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:25:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:26:35 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:26:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:26:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:26:57 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:26:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:26:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:27:18 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:27:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:27:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:27:36 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:27:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:27:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:33:07 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:33:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:33:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:33:30 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:33:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:33:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:37:36 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:37:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:37:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:38:10 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[21-Dec-2018 06:38:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[21-Dec-2018 06:38:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[23-Dec-2018 22:33:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[23-Dec-2018 22:33:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 09:03:27 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 09:03:27 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:08:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:08:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 11:38:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 11:38:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:09:20 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 10
[24-Dec-2018 01:09:20 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 10
[24-Dec-2018 01:09:20 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 10
[24-Dec-2018 01:09:20 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 11
[24-Dec-2018 01:09:20 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 11
[24-Dec-2018 01:09:20 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 11
[24-Dec-2018 01:09:20 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 12
[24-Dec-2018 01:09:20 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 12
[24-Dec-2018 01:09:20 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 12
[24-Dec-2018 01:09:20 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[24-Dec-2018 01:14:31 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 10
[24-Dec-2018 01:14:31 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 10
[24-Dec-2018 01:14:31 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 10
[24-Dec-2018 01:14:31 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 11
[24-Dec-2018 01:14:31 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 11
[24-Dec-2018 01:14:31 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 11
[24-Dec-2018 01:14:31 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 12
[24-Dec-2018 01:14:31 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 12
[24-Dec-2018 01:14:31 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 12
[24-Dec-2018 01:14:31 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[24-Dec-2018 01:18:11 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[24-Dec-2018 01:18:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:18:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:19:25 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[24-Dec-2018 01:19:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:19:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:03 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:03 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:03 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:03 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:03 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:03 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:39 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[24-Dec-2018 01:20:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:20:55 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:20:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:10 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[24-Dec-2018 01:22:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[24-Dec-2018 01:22:29 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[24-Dec-2018 01:22:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:51:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:51:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 12:21:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 12:21:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:52:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:53:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:53:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:53:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:54:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:54:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 01:54:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:13:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:13:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 13:43:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 13:43:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:13:39 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[26-Dec-2018 03:13:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:13:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:18:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:18:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:18:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:19:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:19:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:19:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:52 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:25:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:52 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:25:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:52 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:25:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:52 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:25:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:25:52 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:25:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:22 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 24
[26-Dec-2018 03:29:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:40 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:29:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:40 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:29:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:40 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:29:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:40 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:29:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:40 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:29:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:29:40 America/New_York] PHP Strict Standards:  Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/slider.php on line 136
[26-Dec-2018 03:29:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:32:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:32:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 03:32:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 04:10:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 04:10:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 14:40:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 14:40:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 04:11:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 04:11:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 04:11:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 05:43:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 05:43:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 16:13:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 16:13:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 05:47:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 05:47:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 05:47:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 22:50:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 22:50:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 09:20:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 09:20:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 22:58:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 22:58:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 22:58:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:01:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:01:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:01:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:03:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:03:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:03:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[26-Dec-2018 23:29:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 00:05:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 00:05:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 00:05:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 00:10:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 00:10:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 00:10:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 01:50:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 01:50:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 12:20:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 12:20:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 01:52:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 01:52:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 01:52:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 05:27:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 05:27:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 15:57:50 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 15:57:50 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 05:28:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 05:28:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 05:28:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:42:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:42:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 17:12:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 17:12:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 06:43:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 23:11:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 23:11:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[28-Dec-2018 09:41:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[28-Dec-2018 09:41:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 23:12:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 23:12:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[27-Dec-2018 23:12:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[30-Dec-2018 22:31:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[30-Dec-2018 22:31:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 09:01:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 09:01:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:13:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:13:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 10:43:18 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 10:43:18 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:13:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:13:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:13:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:14:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:14:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:14:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:14:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:14:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:14:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:15:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:15:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:15:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:15:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:15:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:15:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:55:01 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 00:55:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:55:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:55:46 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 00:55:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:55:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:57:36 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 00:57:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:57:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:58:14 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 00:58:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 00:58:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:08:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:08:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:08:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:08:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:08:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:08:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:09:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:09:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:09:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:15:43 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product-type.php on line 24
[31-Dec-2018 01:15:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:15:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:18:49 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 01:18:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:18:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:19:10 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 01:19:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:19:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:19:50 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 01:19:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:19:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:20:25 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 01:20:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:20:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:24:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:24:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:29:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 01:29:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:18:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:18:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 12:48:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 12:48:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:19:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:19:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:19:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:19:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:19:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:19:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:20:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:20:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:20:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:21:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:21:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:21:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:22:32 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 02:22:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:22:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:22:52 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 02:22:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:22:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:23:32 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 02:23:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:23:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:23:50 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[31-Dec-2018 02:23:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:23:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 02:42:18 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 11
[31-Dec-2018 02:42:18 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 11
[31-Dec-2018 02:42:18 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 11
[31-Dec-2018 02:42:18 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[31-Dec-2018 02:54:44 America/New_York] PHP Deprecated:  mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 11
[31-Dec-2018 02:54:44 America/New_York] PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 11
[31-Dec-2018 02:54:44 America/New_York] PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 11
[31-Dec-2018 02:54:44 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[31-Dec-2018 03:01:32 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[31-Dec-2018 03:01:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:01:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:01:45 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[31-Dec-2018 03:01:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:01:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:02:01 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[31-Dec-2018 03:02:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:02:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:02:22 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[31-Dec-2018 03:02:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[31-Dec-2018 03:02:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[02-Jan-2019 23:10:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[02-Jan-2019 23:10:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 09:40:38 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 09:40:38 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 10:20:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 10:20:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 20:50:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 20:50:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 10:51:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 10:51:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 21:21:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[03-Jan-2019 21:21:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:27:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:27:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 14:57:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 14:57:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:27:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:27:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 14:57:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 14:57:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:31:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:31:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:33:04 America/New_York] PHP Strict Standards:  Non-static method User::checkOldPass() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/change-password.php on line 7
[05-Jan-2019 04:33:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:33:04 America/New_York] PHP Strict Standards:  Non-static method User::changePassword() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/change-password.php on line 11
[05-Jan-2019 04:33:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:33:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:33:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 15:03:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 15:03:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:41:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 04:41:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 15:11:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 15:11:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:10:21 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[05-Jan-2019 05:10:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:10:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:34:33 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[05-Jan-2019 05:34:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:34:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:48:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:48:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:48:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:48:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:48:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:48:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:51:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:51:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:51:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:54:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:54:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:54:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:55:13 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[05-Jan-2019 05:55:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:55:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:57:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:57:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:57:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:58:00 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[05-Jan-2019 05:58:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:58:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:58:19 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[05-Jan-2019 05:58:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:58:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:58:41 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[05-Jan-2019 05:58:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:58:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:59:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:59:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 05:59:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:00:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:00:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:00:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:01:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:01:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:01:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:02:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:02:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:02:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:03:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:03:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:03:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:04:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:04:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:04:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:06:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:06:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[05-Jan-2019 06:06:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:30:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:30:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 17:00:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 17:00:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:32:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:32:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:32:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:41:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:41:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:44:02 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[10-Jan-2019 06:44:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:44:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:44:59 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[10-Jan-2019 06:44:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:44:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:45:46 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[10-Jan-2019 06:45:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:45:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:47:25 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[10-Jan-2019 06:47:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:47:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:48:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:48:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:48:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:48:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:53:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:53:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:54:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:54:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:56:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:56:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 06:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 07:01:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 07:01:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 07:05:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 07:05:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:33:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:38:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:38:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 10:08:26 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 10:08:26 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:40:58 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:41:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:41:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:41:24 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:41:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:41:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:41:43 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:41:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:41:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:42:02 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:42:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:42:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:42:20 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:42:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:42:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:42:43 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:42:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:42:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:44:44 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:44:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:44:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:45:17 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:45:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:45:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:45:36 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:45:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:45:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:46:28 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:46:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:46:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:47:32 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:47:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:47:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:48:09 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:48:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:48:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:48:31 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:48:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:48:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:48:49 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:48:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:48:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:06 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:49:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:24 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:49:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:42 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:49:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:49:58 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:50:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:15 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:50:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:34 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:50:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:52 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:50:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:50:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:52:34 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:52:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:52:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:52:52 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:52:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:52:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:53:06 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:53:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:53:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:53:24 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 19
[10-Jan-2019 23:53:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:53:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:39 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[10-Jan-2019 23:56:40 America/New_York] PHP Strict Standards:  Non-static method AlbumPhoto::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/album-photo.php on line 167
[10-Jan-2019 23:56:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:25:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:25:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 12:55:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 12:55:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:34:30 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:34:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:34:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:35:08 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:35:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:35:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:35:41 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:35:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:35:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:36:22 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:36:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:36:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:37:09 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:37:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:37:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:51:43 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:51:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:51:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:52:55 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:52:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:52:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:55:04 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 02:55:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:55:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:56:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:56:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:56:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:56:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:56:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:56:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:57:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:58:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 02:59:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:01:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:01:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:01:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:01:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:01:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:01:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:02:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:02:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:02:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:02:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:02:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:02:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:05:38 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:05:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:05:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:05:59 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:05:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:05:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:06:15 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:06:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:06:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:06:32 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:06:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:06:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:07:12 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:07:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:07:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:07:28 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:07:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:07:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:07:46 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:07:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:07:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:08:03 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:08:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:08:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:08:21 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:08:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:08:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:08:44 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:08:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:08:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:09:02 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:09:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:09:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:09:35 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:09:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:09:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:09:54 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:09:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:09:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:10:10 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:10:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:10:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:10:31 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:10:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:10:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:10:53 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:10:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:10:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:11:14 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:11:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:11:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:11:48 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:11:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:11:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:12:45 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:12:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:12:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:04 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:13:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:19 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:13:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:35 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:13:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:53 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:13:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:13:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:14:10 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:14:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:14:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:15:27 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:15:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:15:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:15:46 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:15:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:15:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:16:03 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[11-Jan-2019 03:16:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:16:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:16:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:16:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:16:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:17:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:17:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:17:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:17:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:17:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:17:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:18:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:18:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:18:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:18:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:18:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:18:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:19:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:19:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:19:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:19:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:19:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:19:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:20:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:20:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:20:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:21:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:21:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:21:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:22:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:22:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:22:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:23:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:23:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:23:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:23:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:23:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:23:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:24:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:39:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:39:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:39:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:40:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:40:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:40:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:41:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:41:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:41:20 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:41:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:41:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:41:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[11-Jan-2019 03:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 22:44:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 22:44:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[14-Jan-2019 09:14:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[14-Jan-2019 09:14:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:22:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:22:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:22:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:26:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:26:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[14-Jan-2019 09:56:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[14-Jan-2019 09:56:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:34:21 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 25
[13-Jan-2019 23:34:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[13-Jan-2019 23:34:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:24:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:24:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 09:54:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 09:54:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:26:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:26:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:26:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:26:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:26:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:26:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:35 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:47 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:47 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:29:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:29:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Jan-2019 23:30:06 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[15-Jan-2019 23:30:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:23:46 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 135
[16-Jan-2019 00:23:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:25:08 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:26:35 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:28:50 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:30:08 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:32:14 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:32:54 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:37:56 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:40:15 America/New_York] PHP Fatal error:  Call to undefined function phpinclude_once() in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 1
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:56:21 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:56:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:07 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:57:54 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:57:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 00:58:04 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 00:58:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:00:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:00:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:00:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[16-Jan-2019 01:01:27 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[16-Jan-2019 01:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[17-Jan-2019 01:01:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[17-Jan-2019 01:01:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[17-Jan-2019 11:31:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[17-Jan-2019 11:31:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:33:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:33:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 10:03:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 10:03:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:42:17 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:42:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:42:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:44:06 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:44:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:44:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:44:58 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:44:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:44:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:45:46 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:45:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:45:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:46:36 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:46:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:46:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:47:35 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:47:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:47:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:48:22 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:48:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:48:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:50:22 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:50:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:50:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:51:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:51:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:51:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:54:17 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[18-Jan-2019 23:54:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[18-Jan-2019 23:54:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:00:27 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:00:39 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:00:52 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:00:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:00:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:01 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:01:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:14 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:01:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:27 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:38 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:01:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:50 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:01:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:01:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:02:04 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:02:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:02:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:52 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:03:53 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:03:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:11:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:11:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:11:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:11:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:11:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:11:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:12:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:13:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:14:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:16:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:17:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:18:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:18:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:18:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:19:30 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:19:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:05 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:48:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:56 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:48:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:48:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:49:15 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:49:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:49:15 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:49:31 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:49:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:49:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:52:10 America/New_York] PHP Strict Standards:  Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 49
[19-Jan-2019 00:52:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:52:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:52:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:52:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:52:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 00:58:31 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 00:58:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:39 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:39 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:39 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:39 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:40 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:00:41 America/New_York] PHP Strict Standards:  Non-static method Product::arrange() should not be called statically in /home/islapiiu/sites/forbes/control-panel/post-and-get/product.php on line 264
[19-Jan-2019 01:00:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:03 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[19-Jan-2019 01:01:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:41:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:41:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 16:11:38 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 16:11:38 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:42:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:42:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:42:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:42:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:42:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Feb-2019 05:42:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Mar-2020 06:24:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[01-Mar-2020 06:25:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[04-Aug-2023 00:32:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[04-Aug-2023 00:32:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[04-Aug-2023 00:32:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[04-Aug-2023 10:02:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[04-Aug-2023 10:02:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Feb-2024 05:28:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Feb-2024 05:28:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Feb-2024 15:58:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
[15-Feb-2024 15:58:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/forbes/class/Database.php on line 25
change-password.php000064400000003164150764335370010363 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['changePassword'])) {

    $OldPassOk = User::checkOldPass($_POST["id"], $_POST["oldPass"]);

    if ($_POST["newPass"] === $_POST["confPass"]) {
        if ($OldPassOk) {
            $result = User::changePassword($_POST["id"], $_POST["newPass"]);
            if ($result == 'TRUE') {
                header('location: log-out.php');
                exit();
            } else {
                header('location: ../change-password.php?id=' . $_POST["id"] . '&&message=14');
                exit();
            }
        } else {
            header('location: ../change-password.php?id=' . $_POST["id"] . '&&message=18');
            exit();
        }
    } else {
        header('location: ../change-password.php?id=' . $_POST["id"] . '&&message=17');
        exit();
    }
}

if (isset($_POST['PasswordReset'])) {
    $USER = new User(NULL);
    $code = $_POST["code"];
    $password = $_POST["password"];
    $confpassword = $_POST["confirmpassword"];

    if ($password === $confpassword && $password != NULL && $confpassword != NULL) {
        if ($USER->SelectResetCode($code)) {
            $USER->updatePassword($password, $code);
            header('Location: ../login.php?message=15');
        } else {
            header('Location: ../reset-password.php?message=16');
        }
    } else {
        header('Location: ../reset-password.php?message=17');
    }


//    $OldPassOk = User::ChecknewReset($_POST["code"], $_POST["password"]);
//
//    header('Location: ../reset-password.php?message=3');
}

album-photo.php000064400000010755150764335370007531 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ALBUM_PHOTO = new AlbumPhoto(NULL);
    $VALID = new Validator();

    $ALBUM_PHOTO->album = $_POST['id'];
    $ALBUM_PHOTO->caption = $_POST['caption'];

    $dir_dest = '../../upload/photo-album/gallery/';
    $dir_dest_thumb = '../../upload/photo-album/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 250;
        $handle->image_y = 250;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ALBUM_PHOTO->image_name = $imgName;

    $VALID->check($ALBUM_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ALBUM_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/photo-album/gallery/';
    $dir_dest_thumb = '../../upload/photo-album/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 250;
        $handle->image_y = 250;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $ALBUM_PHOTO = new AlbumPhoto($_POST['id']);

    $ALBUM_PHOTO->image_name = $_POST['oldImageName'];
    $ALBUM_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $VALID = new Validator();
    $VALID->check($ALBUM_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ALBUM_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $ALBUM_PHOTO = AlbumPhoto::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}pages.php000064400000006252150764335370006376 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $PAGES = new Page(NULL);
    $VALID = new Validator();

    $PAGES->title = mysql_real_escape_string($_POST['title']);
    $PAGES->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/page/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 422;
        $handle->image_y = 513;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $PAGES->image_name = $imgName;

    $VALID->check($PAGES, [
        'title' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $PAGES->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/page/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 422;
        $handle->image_y = 513;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $PAGES = new Page($_POST['id']);

    $PAGES->image_name = $_POST['oldImageName'];
    $PAGES->title = mysql_real_escape_string($_POST['title']);
    $PAGES->description = mysql_real_escape_string($_POST['description']);


    $VALID = new Validator();
    $VALID->check($PAGES, [
        'title' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);


    if ($VALID->passed()) {
        $PAGES->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
    dd($PAGES);
}slider.php000064400000007124150764335370006560 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $SLIDER = new Slider(NULL);
    $VALID = new Validator();

    $SLIDER->title = $_POST['title'];
    $SLIDER->description = $_POST['description'];
    $SLIDER->url =  $_POST['url'];

    $dir_dest = '../../upload/slider/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 1920;
        $handle->image_y = 928;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SLIDER->image_name = $imgName;

    $VALID->check($SLIDER, [
        'title' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'url' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $SLIDER->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/slider/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 1920;
        $handle->image_y = 928;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SLIDER = new Slider($_POST['id']);

    $SLIDER->image_name = $_POST['oldImageName'];
    $SLIDER->title = $_POST['title'];
    $SLIDER->description = $_POST['description'];
    $SLIDER->url = $_POST['url'];


    $VALID = new Validator();
    $VALID->check($SLIDER, [
        'title' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'url' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $SLIDER->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}


if (isset($_POST['save-date'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;
        
        $SLIDER = Slider::arrange($key, $img);
        
        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}attraction-photo.php000064400000011142150764335370010570 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ATTRACTION_PHOTO = new AttractionPhoto(NULL);
    $VALID = new Validator();

    $ATTRACTION_PHOTO->attraction = $_POST['id'];
    $ATTRACTION_PHOTO->caption = mysql_real_escape_string($_POST['caption']);


    $dir_dest = '../../upload/attraction/gallery/';
    $dir_dest_thumb = '../../upload/attraction/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ATTRACTION_PHOTO->image_name = $imgName;

    $VALID->check($ATTRACTION_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ATTRACTION_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/attraction/gallery/';
    $dir_dest_thumb = '../../upload/attraction/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $ATTRACTION_PHOTO = new AttractionPhoto($_POST['id']);

    $ATTRACTION_PHOTO->image_name = $_POST['oldImageName'];
    $ATTRACTION_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $VALID = new Validator();
    $VALID->check($ATTRACTION_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ATTRACTION_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;
        
        $ACTIVITY_PHOTO = AttractionPhoto::arrange($key, $img);
        
        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}edit-profile.php000064400000002272150764335370007660 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['submit'])) {
     
    $dir_dest = '../images/profile/';
    $handle = new Upload($_FILES['picture']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_ext = 'jpg';
        $handle->file_new_name_body = $_POST['id'];
        $handle->image_x = 250;
        $handle->image_y = 250;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $USER = new User(NULL);

    $USER->id = $_POST['id'];
    $USER->name = $_POST['name'];
    $USER->username = $_POST['username'];
    $USER->email = $_POST['email'];
    $USER->isActive = 1;

    $result = $USER->update();

    if ($result) {
        header("location: ../edit-profile.php?id=" . $USER->id."&&message=9");
    } else {
        
    }
}banner.php000064400000005671150764335370006550 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $BANNER = new Banner(NULL);
    $VALID = new Validator();

    $BANNER->title = mysql_real_escape_string($_POST['title']);

    $dir_dest = '../../upload/banner/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 400;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $BANNER->image_name = $imgName;

    $VALID->check($BANNER, [
        'title' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $BANNER->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/banner/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 400;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $BANNER = new Banner($_POST['id']);

    $BANNER->image_name = $_POST['oldImageName'];
    $BANNER->title = mysql_real_escape_string($_POST['title']);

    $VALID = new Validator();
    $VALID->check($BANNER, [
        'title' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);


    if ($VALID->passed()) {
        $BANNER->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
  }log-out.php000064400000000330150764335370006654 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

$USER = new User(NULL);

if ($USER->logOut()) {
    header('Location: ../login.php');
} else {
    header('Location: ./?error=2');
}

tour-package.php000064400000010342150764335370007654 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $TOUR_PACKAGE = new TourPackage(NULL);
    $VALID = new Validator();

    $TOUR_PACKAGE->title = mysql_real_escape_string($_POST['title']);
    $TOUR_PACKAGE->price = mysql_real_escape_string($_POST['price']);
    $TOUR_PACKAGE->short_description = mysql_real_escape_string($_POST['short_description']);
    $TOUR_PACKAGE->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/tour-package/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $TOUR_PACKAGE->image_name = $imgName;

    $VALID->check($TOUR_PACKAGE, [
        'title' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $TOUR_PACKAGE->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header("location: ../view-tour-date.php?id=" . $TOUR_PACKAGE->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
//    $result = $TOUR_PACKAGE->create();
//    if ($result) {
//        header("location: ../create-tour-package.php?id=" . $TOUR_PACKAGE->id . "&&message=10");
//    } else {
//        
//    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/tour-package/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $TOUR_PACKAGE = new TourPackage($_POST['id']);

    $TOUR_PACKAGE->image_name = $_POST['oldImageName'];
    $TOUR_PACKAGE->title = mysql_real_escape_string($_POST['title']);
    $TOUR_PACKAGE->price = mysql_real_escape_string($_POST['price']);
    $TOUR_PACKAGE->short_description = mysql_real_escape_string($_POST['short_description']);
    $TOUR_PACKAGE->description = mysql_real_escape_string($_POST['description']);


    $VALID = new Validator();

    $VALID->check($TOUR_PACKAGE, [
        'title' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $TOUR_PACKAGE->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;
        
        $TOUR_PACKAGE = TourPackage::arrange($key, $img);
        
        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}tour-package-normal.php000064400000010362150764335370011144 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $TOUR_PACKAGE = new TourPackage(NULL);
    $VALID = new Validator();

    $TOUR_PACKAGE->title = mysql_real_escape_string($_POST['title']);
    $TOUR_PACKAGE->price = mysql_real_escape_string($_POST['price']);
    $TOUR_PACKAGE->short_description = mysql_real_escape_string($_POST['short_description']);
    $TOUR_PACKAGE->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/tour-package/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $TOUR_PACKAGE->image_name = $imgName;

    $VALID->check($TOUR_PACKAGE, [
        'title' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $TOUR_PACKAGE->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();
//        header('Location: ' . $_SERVER['HTTP_REFERER']);
       header("location: ../view-tour-photos-normal.php?id=" . $TOUR_PACKAGE->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/tour-package/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $TOUR_PACKAGE = new TourPackage($_POST['id']);

    $TOUR_PACKAGE->image_name = $_POST['oldImageName'];
    $TOUR_PACKAGE->title = mysql_real_escape_string($_POST['title']);
    $TOUR_PACKAGE->price = mysql_real_escape_string($_POST['price']);
    $TOUR_PACKAGE->short_description = mysql_real_escape_string($_POST['short_description']);
    $TOUR_PACKAGE->description = mysql_real_escape_string($_POST['description']);


    $VALID = new Validator();

    $VALID->check($TOUR_PACKAGE, [
        'title' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $TOUR_PACKAGE->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;
        
        $TOUR_PACKAGE = TourPackage::arrange($key, $img);
        
        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}comment.php000064400000007507150764335370006745 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $COMMENT = new Comments(NULL);
    $VALID = new Validator();

    $COMMENT->name = mysql_real_escape_string($_POST['name']);
    $COMMENT->title = mysql_real_escape_string($_POST['title']);
    $COMMENT->comment = mysql_real_escape_string($_POST['comment']);
    $COMMENT->is_active = mysql_real_escape_string($_POST['active']);

    $dir_dest = '../../upload/comments/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 81;
        $handle->image_y = 81;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $COMMENT->image_name = $imgName;

    $VALID->check($COMMENT, [
        'name' => ['required' => TRUE],
        'title' => ['required' => TRUE],
        'comment' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $COMMENT->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}



if (isset($_POST['update'])) {
    $dir_dest = '../../upload/comments/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 81;
        $handle->image_y = 81;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $COMMENT = new Comments($_POST['id']);

    $COMMENT->image_name = $_POST['oldImageName'];
    $COMMENT->name = mysql_real_escape_string($_POST['name']);
    $COMMENT->title = mysql_real_escape_string($_POST['title']);
    $COMMENT->comment = mysql_real_escape_string($_POST['comment']);
    $COMMENT->is_active = mysql_real_escape_string($_POST['active']);

    $VALID = new Validator();
    $VALID->check($COMMENT, [
        'image_name' => ['required' => TRUE],
        'name' => ['required' => TRUE],
        'title' => ['required' => TRUE],
        'comment' => ['required' => TRUE],
     
    ]);

    if ($VALID->passed()) {
        $COMMENT->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $COMMENT = Comments::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}activity-photo.php000064400000011043150764335370010254 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ACTIVITY_PHOTO = new ActivitiesPhoto(NULL);
    $VALID = new Validator();

    $ACTIVITY_PHOTO->activities = $_POST['id'];
    $ACTIVITY_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $dir_dest = '../../upload/activity/gallery/';
    $dir_dest_thumb = '../../upload/activity/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ACTIVITY_PHOTO->image_name = $imgName;

    $VALID->check($ACTIVITY_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ACTIVITY_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/activity/gallery/';
    $dir_dest_thumb = '../../upload/activity/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $ACTIVITY_PHOTO = new ActivitiesPhoto($_POST['id']);

    $ACTIVITY_PHOTO->image_name = $_POST['oldImageName'];
    $ACTIVITY_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $VALID = new Validator();
    $VALID->check($ACTIVITY_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $ACTIVITY_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $ACTIVITY_PHOTO = ActivitiesPhoto::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}room.php000064400000010117150764335370006246 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $ROOM = new Room(NULL);
    $VALID = new Validator();

    $ROOM->title = mysql_real_escape_string($_POST['title']);
    $ROOM->short_description = mysql_real_escape_string($_POST['short_description']);
    $ROOM->description = mysql_real_escape_string($_POST['description']);
    $ROOM->no_of_rooms = mysql_real_escape_string($_POST['no_of_rooms']);
    $ROOM->price = mysql_real_escape_string($_POST['price']);

    $dir_dest = '../../upload/room/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ROOM->image_name = $imgName;

    $VALID->check($ROOM, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'no_of_rooms' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $ROOM->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

         header("location: ../view-room-photos.php?id=" . $ROOM->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/room/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $ROOM = new Room($_POST['id']);

    $ROOM->image_name = $_POST['oldImageName'];
    $ROOM->title = mysql_real_escape_string($_POST['title']);
    $ROOM->short_description = mysql_real_escape_string($_POST['short_description']);
    $ROOM->description = mysql_real_escape_string($_POST['description']);
    $ROOM->no_of_rooms = mysql_real_escape_string($_POST['no_of_rooms']);
    $ROOM->price = mysql_real_escape_string($_POST['price']);

    $VALID = new Validator();

    $VALID->check($ROOM, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'no_of_rooms' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $ROOM->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}


if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $ROOM = Room::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}offer.php000064400000010105150764335370006370 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $OFFER = new Offer(NULL);
    $VALID = new Validator();

    $OFFER->title = mysql_real_escape_string($_POST['title']);
    $OFFER->short_description = mysql_real_escape_string($_POST['short_description']);
    $OFFER->description = mysql_real_escape_string($_POST['description']);
    $OFFER->price = mysql_real_escape_string($_POST['price']);
    $OFFER->discount = mysql_real_escape_string($_POST['discount']);

    $dir_dest = '../../upload/offer/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $OFFER->image_name = $imgName;

    $VALID->check($OFFER, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'discount' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);


    if ($VALID->passed()) {
        $OFFER->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/offer/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $OFFER = new Offer($_POST['id']);

    $OFFER->image_name = $_POST['oldImageName'];
    $OFFER->title = mysql_real_escape_string($_POST['title']);
    $OFFER->short_description = mysql_real_escape_string($_POST['short_description']);
    $OFFER->description = mysql_real_escape_string($_POST['description']);
    $OFFER->price = mysql_real_escape_string($_POST['price']);
    $OFFER->discount = mysql_real_escape_string($_POST['discount']);

    $VALID = new Validator();

    $VALID->check($OFFER, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'price' => ['required' => TRUE],
        'discount' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);


    if ($VALID->passed()) {
        $OFFER->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $OFFER = Offer::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}product-type.php000064400000007460150764335370007740 0ustar00<?php



include_once(dirname(__FILE__) . '/../../class/include.php');



if (isset($_POST['create'])) {



    $PRODUCT_TYPE = new ProductType(NULL);

    $VALID = new Validator();



    $PRODUCT_TYPE->name = $_POST['name'];

    $PRODUCT_TYPE->short_description = $_POST['short_description'];

    $PRODUCT_TYPE->description = $_POST['description'];



    $dir_dest = '../../upload/product-type/';



    $handle = new Upload($_FILES['image']);



    $imgName = null;



    if ($handle->uploaded) {

        $handle->image_resize = true;

        $handle->file_new_name_ext = 'jpg';

        $handle->image_ratio_crop = 'C';

        $handle->file_new_name_body = Helper::randamId();

        $handle->image_x = 450;

        $handle->image_y = 450;



        $handle->Process($dir_dest);



        if ($handle->processed) {

            $info = getimagesize($handle->file_dst_pathname);

            $imgName = $handle->file_dst_name;

        }

    }



    $PRODUCT_TYPE->image_name = $imgName;



    $VALID->check($PRODUCT_TYPE, [

        'name' => ['required' => TRUE],

        'short_description' => ['required' => TRUE],

        'description' => ['required' => TRUE],

        'image_name' => ['required' => TRUE]

    ]);



    if ($VALID->passed()) {

        $PRODUCT_TYPE->create();



        if (!isset($_SESSION)) {

            session_start();

        }

        $VALID->addError("Your data was saved successfully", 'success');

        $_SESSION['ERRORS'] = $VALID->errors();

        header("location: ../view-products.php?id=" . $PRODUCT_TYPE->id);

       

    } else {



        if (!isset($_SESSION)) {

            session_start();

        }



        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    }

}



if (isset($_POST['update'])) {

    $dir_dest = '../../upload/product-type/';



    $handle = new Upload($_FILES['image']);



    $imgName = null;



    if ($handle->uploaded) {

        $handle->image_resize = true;

        $handle->file_new_name_body = TRUE;

        $handle->file_overwrite = TRUE;

        $handle->file_new_name_ext = FALSE;

        $handle->image_ratio_crop = 'C';

        $handle->file_new_name_body = $_POST ["oldImageName"];

        $handle->image_x = 450;

        $handle->image_y = 450;



        $handle->Process($dir_dest);



        if ($handle->processed) {

            $info = getimagesize($handle->file_dst_pathname);

            $imgName = $handle->file_dst_name;

        }

    }



    $PRODUCT_TYPE = new ProductType(NULL);



    $PRODUCT_TYPE->id = $_POST['id'];

    $PRODUCT_TYPE->image_name = $_POST['oldImageName'];

    $PRODUCT_TYPE->name = $_POST['name'];

    $PRODUCT_TYPE->short_description = $_POST['short_description'];

    $PRODUCT_TYPE->description = $_POST['description'];



    $VALID = new Validator();

    $VALID->check($PRODUCT_TYPE, [

        'name' => ['required' => TRUE],

        'short_description' => ['required' => TRUE],

        'description' => ['required' => TRUE],

        'image_name' => ['required' => TRUE]

    ]);



    if ($VALID->passed()) {

        $PRODUCT_TYPE->update();



        if (!isset($_SESSION)) {

            session_start();

        }

        $VALID->addError("Your changes saved successfully", 'success');

        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    } else {



        if (!isset($_SESSION)) {

            session_start();

        }



        $_SESSION['ERRORS'] = $VALID->errors();



        header('Location: ' . $_SERVER['HTTP_REFERER']);

    }

}



if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $PRODUCT_TYPE = ProductType::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);

    }

}tour-date-photo.php000064400000011366150764335370010334 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $TOUR_DATE_PHOTO = new TourDatePhoto(NULL);
    $VALID = new Validator();

   $TOUR_DATE_PHOTO->tour_date = $_POST['id'];
   $TOUR_DATE_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $dir_dest = '../../upload/tour-package/date/gallery/';
    $dir_dest_thumb = '../../upload/tour-package/date/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

   $TOUR_DATE_PHOTO->image_name = $imgName;

    $VALID->check($TOUR_DATE_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
       $TOUR_DATE_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/tour-package/date/gallery';
    $dir_dest_thumb = '../../upload/tour-package/date/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

   $TOUR_DATE_PHOTO = new TourDatePhoto($_POST['id']);

   $TOUR_DATE_PHOTO->image_name = $_POST['oldImageName'];
   $TOUR_DATE_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $VALID = new Validator();
    $VALID->check($TOUR_DATE_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $TOUR_DATE_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $TOUR_DATE_PHOTO = TourDatePhoto::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}offer-photo.php000064400000011220150764335370007516 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $OFFER_PHOTO = new OfferPhoto(NULL);
    $VALID = new Validator();

    $OFFER_PHOTO->offer = $_POST['id'];
    $OFFER_PHOTO->caption = mysql_real_escape_string($_POST['caption']);

    $dir_dest = '../../upload/offer/gallery/';
    $dir_dest_thumb = '../../upload/offer/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;
    $img = Helper::randamId();

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $OFFER_PHOTO->image_name = $imgName;

    $VALID->check($OFFER_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
        $OFFER_PHOTO->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['update'])) {

    $dir_dest = '../../upload/offer/gallery/';
    $dir_dest_thumb = '../../upload/offer/gallery/thumb/';

    $handle = new Upload($_FILES['image']);

    $img = $_POST ["oldImageName"];

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }


        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $img;
        $handle->image_x = 300;
        $handle->image_y = 175;

        $handle->Process($dir_dest_thumb);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $img = $handle->file_dst_name;
        }
    }

    $OFFER_PHOTO = new OfferPhoto($_POST['id']);

    $OFFER_PHOTO->image_name = $_POST['oldImageName'];
    $OFFER_PHOTO->caption = filter_input(INPUT_POST, 'caption');

    $VALID = new Validator();
    $VALID->check($OFFER_PHOTO, [
        'caption' => ['required' => TRUE],
        'image_name' => ['required' => TRUE]
    ]);

    if ($VALID->passed()) {
       $OFFER_PHOTO->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $OFFER_PHOTO = OfferPhoto::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}reset-password.php000064400000004357150764335370010265 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');


$USER = new User(NULL);

$email = $_POST['email'];

if (empty($email)) {
    header('Location: ../forget-password.php?message=11');
    exit();
}

if ($USER->checkEmail($email)) {

    if ($USER->GenarateCode($email)) {
        $res = $USER->SelectForgetUser($email);

        $username = $USER->username;
        $email = $USER->email;
        $resetcode = $USER->restCode;

        date_default_timezone_set('Asia/Colombo');

        $todayis = date("l, F j, Y, g:i a");

        $subject = 'Dashboard - Password Reset';
        $from = '[email protected]'; // give from email address


        $headers = "From: " . $from . "\r\n";
        $headers .= "Reply-To: " . $email . "\r\n";
        $headers .= "MIME-Version: 1.0\r\n";
        $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

        $html = "<table style='border:solid 1px #F0F0F0; font-size: 15px; font-family: sans-serif; padding: 0;'>";

        $html .= "<tr><th colspan='3' style='font-size: 18px; padding: 30px 25px 0 25px; color: #fff; text-align: center; background-color: #4184F3;'><h2>Sublime Holdings</h2> </th> </tr>";

        $html .= "<tr><td colspan='3' style='font-size: 16px; padding: 20px 25px 10px 25px; color: #333; text-align: left; background-color: #fff;'><h3>" . $subject . "</h3> </td> </tr>";

        $html .= "<tr><td colspan='3' style='font-size: 14px; padding: 5px 25px 10px 25px; color: #666; background-color: #fff; line-height: 25px;'><b>Password Reset Code: </b> " . $resetcode . "</td></tr>";

        $html .= "<tr><td colspan='3' style='font-size: 14px; padding: 0 25px 10px 25px; color: #666; background-color: #fff; '><b>Username: </b> " . $username . "</td></tr>";

        $html .= "<tr><td colspan='3' style='font-size: 14px; background-color: #FAFAFA; padding: 25px; color: #333; font-weight: 300; text-align: justify; '>Thank you</td></tr>";

        $html .= "</table>";

        if (mail($email, $subject, $html, $headers)) {
            header('Location: ../reset-password.php?message=12');
        } else {
            header('Location: ../reset-password.php?message=14');
        }
    }



    exit();
} else {
    header('Location: ../forget-password.php?message=13');
    exit();
}

ajax/action.php000064400000004053150766310370007467 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');
// dd($_POST);
session_start();



if ($_POST["action"] === "ADD") {

    if (isset($_SESSION["shopping_cart"])) {

        $is_available = 0;

        foreach ($_SESSION["shopping_cart"] as $key => $values) {

            if ($_SESSION["shopping_cart"] [$key] ['product_id'] == $_POST["product_id"]) {
                $is_available++;
//                if (isset($_POST['quantity'])) {
//                      
//                    $_SESSION["shopping_cart"][$key]
//                            ['product_quantity'] =   $_POST['quantity']; 
//                    } else { 
//                    $_SESSION["shopping_cart"][$key]
//                            ['product_quantity'] = $_SESSION["shopping_cart"][$key] ['product_quantity'] + $_POST["product_quantity"];
//                }
                $result = "error";
                echo json_encode($result);
                header('Content-type: application/json');
                exit();
            }
        }


        if ($is_available == 0) {
            $iteam_array = array(
                'product_id' => $_POST["product_id"],
                'product_name' => $_POST["product_name"],
                'product_price' => $_POST["product_price"],
                'product_quantity' => $_POST["product_quantity"],
            );
            $_SESSION["shopping_cart"][] = $iteam_array;
        }
    } else {
        $iteam_array = array(
            'product_id' => $_POST["product_id"],
            'product_name' => $_POST["product_name"],
            'product_price' => $_POST["product_price"],
            'product_quantity' => $_POST["product_quantity"]
        );
        $_SESSION["shopping_cart"][] = $iteam_array;
    }
}

if ($_POST["action"] === 'REMOVE') {
    
    foreach ($_SESSION["shopping_cart"] as $key => $value) {
        
        if ($value["product_id"] == $_POST["product_id"]) {
            unset($_SESSION["shopping_cart"] [$key]);
        }
    }
}

if ($_POST["action"] == 'EMPTY') {
    unset($_SESSION["shopping_cart"]);
}
?> ajax/delivery_charges.php000064400000001166150766310370011533 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if ($_POST['action'] == 'GETDELIVERYCHARGESBYDISTRICT') {

    $DISTRICT = new District($_POST['district']);

    $grand_total = $_POST['sub_total_amount'] + $DISTRICT->delivery_charge;

    $result['display_delivery_charge'] = number_format($DISTRICT->delivery_charge, 2);
    $result['delivery_charge'] = $DISTRICT->delivery_charge;
    $result['display_grand_total'] = number_format($grand_total, 2);
    $result['grand_total'] = $grand_total;


    header('Content-type: application/json');
    echo json_encode($result);
    exit();
}
ajax/city.php000064400000000456150766310370007165 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if ($_POST['action'] == 'GETCITYSBYDISTRICT') {

    $CITY = new City(NULL);

    $result = $CITY->GetCitiesByDistrict($_POST["district"]);

    header('Content-type: application/json');
    echo json_encode($result);
    exit();
}
ajax/product-by-brand.php000064400000004535150766310370011373 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

//All Product Filter
if ($_POST['action'] == 'GETFILTERPRODUCT') {

    $minimum_price = '';
    $maximum_price = '';
    $sub_category = '';
    $brand = '';
    $brand_id = '';

    if (isset($_POST["brand_id"])) {
        $brand_id = $_POST["brand_id"];
    }
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }

    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }
     
    $PRODUCT = new Product(NULL);
    $result = $PRODUCT->getProductsByBrands($brand_id, $brand, $minimum_price, $maximum_price);
    echo $result;
}

//Get Max Price in Product
if ($_POST['action'] == 'GETMAXPRICE') {

    $brand = '';
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }

    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }


    $PRODUCT = new Product(NULL);

    $results = $PRODUCT->getMaxPriceInProduct($category, $brand);
    $result_data = $results[0];
    echo $result_data;
}

//Get Min pRice in Product
if ($_POST['action'] == 'GETMINPRICE') {
    
    $sub_category = '';
    $brand = '';
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    
    $PRODUCT = new Product(NULL);

    $results = $PRODUCT->getMinPriceInProduct($category, $sub_category, $brand);
    $result_data = $results[0];
    echo $result_data;
}
 

//Get Brands
//if ($_POST['action'] == 'GETBRAND') {
//
//    $category = '';
//    $sub_category = '';
//
//    if (isset($_POST["category"])) {
//        $category = $_POST["category"];
//    }
//   
//
//    $PRODUCT = new Product(NULL);
//    $result = $PRODUCT->getBrandByCategory($category);
//    
//    //Print the element out.
//    echo $result;
//}ajax/product.php000064400000010545150766310370007675 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

//All Product Filter
if ($_POST['action'] == 'GETFILTERPRODUCT') {
    $minimum_price = '';
    $maximum_price = '';
    $sub_category = '';
    $brand = '';
    $category = '';
    $cat = '';
    $setlimit = '';
    $page = '';

    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }
    if (isset($_POST["cat"])) {
        $cat = $_POST["cat"];
    }
    if (isset($_POST["setlimit"])) {
        $setlimit = $_POST["setlimit"];
    }
    if (isset($_POST["pagelimit"])) {
        $page = $_POST["pagelimit"];
    }

    $PRODUCT = new Product(NULL);
    if ($category == '' && $cat == '' && $brand == '' && $sub_category == '') {
//        $result = $PRODUCT->getAllProducts($minimum_price, $maximum_price);
        $result = $PRODUCT->getAllProducts($minimum_price, $maximum_price, $page, $setlimit);
        echo $result;
//        echo $result1;
    } else {
        $result = $PRODUCT->getAllProductsByCategoryAndBrand($category, $cat, $minimum_price, $maximum_price, $sub_category, $brand, $page, $setlimit);
        echo $result;
    }
}

//Get Max Price in Product
if ($_POST['action'] == 'GETMAXPRICE') {
    $category = '';
    $cat = '';
    $sub_category = '';
    $brand = '';
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }
    if (isset($_POST["cat"])) {
        $cat = $_POST["cat"];
    }


    $PRODUCT = new Product(NULL);

    $results = $PRODUCT->getMaxPriceInProduct1($category, $cat, $sub_category, $brand);
    $result_data = $results[0];

    echo $result_data;
}

//Get Min pRice in Product
if ($_POST['action'] == 'GETMINPRICE') {
    $category = '';
    $cat = '';
    $sub_category = '';
    $brand = '';
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }
    if (isset($_POST["cat"])) {
        $cat = $_POST["cat"];
    }

    $PRODUCT = new Product(NULL);

    $results = $PRODUCT->getMinPriceInProduct1($category, $cat, $sub_category, $brand);
    $result_data = $results[0];
    echo $result_data;
}

//Pagination Show
if ($_POST['action'] == 'SHOWPAGINATION') {

    $minimum_price = '';
    $maximum_price = '';
    $category = '';
    $cat = '';
    $sub_category = '';
    $brand = '';
    $setlimit = '';
    $page = '';

    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }
    if (isset($_POST["cat"])) {
        $cat = $_POST["cat"];
    }
    if (isset($_POST["setlimit"])) {
        $setlimit = $_POST["setlimit"];
    }
    if (isset($_POST["page"])) {
        $page = $_POST["page"];
    }

    $PRODUCT = new Product(NULL);

    $result = $PRODUCT->showPagination($minimum_price, $maximum_price, $category, $cat, $sub_category, $brand, $setlimit, $page);

    echo $result;
}
 

ajax/registration.php000064400000005107150766310370010725 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');
session_start();
$CUSTOMER = new Customer(NULL);


$CUSTOMER->name = $_POST['name'];
$CUSTOMER->email = $_POST['email'];
$CUSTOMER->password = md5($_POST['password']);
$CUSTOMER->phone_number = $_POST['phone_number'];
$CUSTOMER->district = $_POST['district'];
// $CUSTOMER->city = $_POST['city'];
$CUSTOMER->address = $_POST['address'];

//$dir_dest = '../../upload/customer/profile/';
//$dir_dest_thumb = '../../upload/customer/profile/thumb/';
//
//$handle = new Upload($_FILES['image_name']);
//
//$imgName = null;
//$img = Helper::randamId();
//
//if ($handle->uploaded) {
//    $handle->image_resize = true;
//    $handle->file_new_name_body = TRUE;
//    $handle->file_overwrite = TRUE;
//    $handle->file_new_name_ext = 'jpg';
//    $handle->image_ratio_crop = 'C';
//    $handle->file_new_name_body = $img;
//    $handle->image_x = 100;
//    $handle->image_y = 100;
//
//    $handle->Process($dir_dest);
//
//    if ($handle->processed) {
//        $info = getimagesize($handle->file_dst_pathname);
//        $imgName = $handle->file_dst_name;
//    }
//
//
//    $handle->image_resize = true;
//    $handle->file_new_name_body = TRUE;
//    $handle->file_overwrite = TRUE;
//    $handle->file_new_name_ext = 'jpg';
//    $handle->image_ratio_crop = 'C';
//    $handle->file_new_name_body = $img;
//    $handle->image_x = 30;
//    $handle->image_y = 30;
//
//    $handle->Process($dir_dest_thumb);
//
//    if ($handle->processed) {
//        $info = getimagesize($handle->file_dst_pathname);
//        $imgName = $handle->file_dst_name;
//    }
//}
//
//$CUSTOMER->image_name = $imgName;
$checkEmail = $CUSTOMER->checkEmail($_POST['email']);

if (!$checkEmail) {
    $CUSTOMER->create();
    $CUSTOMER->sendRegistrationEmail();
   
    if ($CUSTOMER->id) {
        $data = $CUSTOMER->login($CUSTOMER->email, $CUSTOMER->password);

        if (empty($data->image_name)) {
            $image_name = 'user.png';
        } else {
            $image_name = $data->image_name;
        }
        $redirect = '';

        if (!empty($_SESSION["back_url"])) {
            $redirect = 'checkout';
        }
        $result = ["status" => 'success', 'image_name' => $image_name, 'name' => $data->name, 'redirect' => $redirect];
        echo json_encode($result);
        exit();
    } else {
        $redirect = '';
        $result = ["status" => 'error', 'redirect' => $redirect];
        echo json_encode($result);
        exit();
    }
} else {
    $result = ["status" => 'error1'];
    echo json_encode($result);
    exit();
}



// put your code here
?>
 
ajax/error_log000064400000644603150766310370007431 0ustar00[17-Sep-2021 07:58:04 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:04 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:04 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:04 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:05 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:05 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:09 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:09 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:09 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:09 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:21 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:21 America/New_York] PHP Notice:  Undefined index: product_id in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 60
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:22 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:24 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/OrderProduct.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:24 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/OrderProduct.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 25
[17-Sep-2021 07:58:24 America/New_York] PHP Warning:  include_once(/home/islapiiu/sites/pramudi/class/District.php): failed to open stream: No such file or directory in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:24 America/New_York] PHP Warning:  include_once(): Failed opening '/home/islapiiu/sites/pramudi/class/District.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/islapiiu/sites/pramudi/class/include.php on line 26
[17-Sep-2021 07:58:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:58:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:59:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:59:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 07:59:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:02 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 17:30:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 17:30:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 17:30:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 17:30:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Sep-2021 08:00:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:03:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:03:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:03:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:03:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:03:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:03:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:08 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:04:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:34:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:05:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:05:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:05:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 05:05:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:46 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:46 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:35:46 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:28:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:28:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:28:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:28:46 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:28:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:28:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:29:28 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:59:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:39:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:39:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:39:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 06:39:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:09:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:25:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:25:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:25:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:25:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:20 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:24 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:24 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:57:24 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:35:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:35:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:35:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:35:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:05:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:33 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:38:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:39:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 07:39:11 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 17:10:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:06:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:06:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:06:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:06:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:06:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:06:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:09:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:33 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:33 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:39:33 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:17:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:17:55 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:17:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:17:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:48:06 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:22:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:22:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:22:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:22:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:22:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:22:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 21:53:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:42:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:42:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:42:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 12:42:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:17 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:12:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:01:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:01:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:01:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:01:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:44 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:31:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:09:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:09:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:09:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:16 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 22:39:21 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:33:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:33:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:33:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:33:27 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:03:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:42:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:42:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:42:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:42:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:12:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:13:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:13:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:13:00 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:46:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:46:48 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:46:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:46:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:16:58 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:17:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:17:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:17:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:58:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:58:14 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:58:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 13:58:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:28:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:04:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:04:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:04:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:04:59 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:35:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:07:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:07:39 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:46 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:46 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:37:46 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:10:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:10:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:40:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:41:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:41:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 23:41:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:32 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:50 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:43:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:44:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:44:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:14:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:51:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:51:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:51:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 14:51:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:21:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:02:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:02:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:02:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:02:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:32:43 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:08:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:08:00 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:03 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:38:07 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:15:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:15:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:53 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:53 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:45:53 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:36:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:36:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:36:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:36:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:01 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:40:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:40:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:40:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:40:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:12 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:15 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:15 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:10:15 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:42:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:42:31 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:42:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:42:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:41 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:12:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:37 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:44:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:47 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:50 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:50 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:50 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:46:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:46:19 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:46:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:46:24 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:29 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:16:32 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:48:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:48:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:48:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:48:41 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:51 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:55 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:50:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:50:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:50:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:50:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:20:59 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:21:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:21:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:21:02 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:57:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 15:57:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:27:35 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:01:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:01:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:01:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:01:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:11 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:14 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:14 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:31:14 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:06:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:06:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:06:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:06:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:49 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:53 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:53 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:36:53 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:10:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:10:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:10:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:10:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:14:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:14:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:14:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:14:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:15:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[23-Sep-2021 16:15:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:57:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:57:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:57:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:57:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:57:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:57:56 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 00:58:30 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 37
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 329
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:42 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 462
[24-Sep-2021 10:29:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:29:48 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:06:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:06 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:07:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Notice:  Undefined index: delivery_charges in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 18
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 329
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:19 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 462
[24-Sep-2021 10:37:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:37:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:14:45 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:17:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:17:34 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:17:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:17:42 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:17:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:17:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:07 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:18:21 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Notice:  Undefined index: delivery_charges in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 18
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 329
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:25 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 462
[24-Sep-2021 10:48:34 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:34 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:48:34 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:19:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:19:17 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:19:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:19:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:23:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:23:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:53:57 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 330
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:30 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 463
[24-Sep-2021 10:56:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 10:56:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:28:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:28:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:42:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:42:12 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:43:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 01:43:18 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:13 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:16 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:22 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:23 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:58:26 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:59:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 02:59:09 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 368
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:13 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 501
[24-Sep-2021 12:29:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 12:29:19 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:05:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:05:54 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:08:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:08:38 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:08:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:08:43 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:53:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:53:58 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:54:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:54:04 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:54:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 03:54:10 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:36:25 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:36:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:36:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:36:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:06:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:06:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:06:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:06:39 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:29 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:40 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:40:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:43:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:43:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:43:52 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:13:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:13:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:13:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:13:56 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:43:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:43:57 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:44:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 04:44:01 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 368
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:22 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:23 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:23 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:23 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 501
[24-Sep-2021 14:14:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:28 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 368
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:31 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 501
[24-Sep-2021 14:14:37 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:37 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:37 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Strict Standards:  Non-static method OrderProduct::getProductsByOrder() should not be called statically in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 38
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  Non-static method OrderProduct::getProductsByOrder() should not be called statically, assuming $this from incompatible context in /home/islapiiu/sites/pramudi/class/Order.php on line 368
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:40 Asia/Colombo] PHP Notice:  Undefined property: Order::$full_name in /home/islapiiu/sites/pramudi/class/Order.php on line 501
[24-Sep-2021 14:14:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 14:14:45 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 05:57:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 05:57:44 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 05:57:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 05:57:49 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 05:57:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[24-Sep-2021 05:57:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 03:16:35 America/New_York] PHP Notice:  Undefined index: user_email in /home/islapiiu/sites/pramudi/post-and-get/ajax/loging.php on line 7
[17-Jan-2024 03:16:35 America/New_York] PHP Notice:  Undefined index: user_password in /home/islapiiu/sites/pramudi/post-and-get/ajax/loging.php on line 8
[17-Jan-2024 03:16:35 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: name in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 8
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: email in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 9
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: password in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 10
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: phone_number in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 11
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: district in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 12
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: address in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 14
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: email in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 60
[17-Jan-2024 03:16:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 03:16:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 03:16:36 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 13:46:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 13:46:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 13:46:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 13:46:36 Asia/Colombo] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 9
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 55
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 65
[17-Jan-2024 03:16:36 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 4
[08-Feb-2024 22:50:51 America/New_York] PHP Notice:  Undefined index: user_email in /home/islapiiu/sites/pramudi/post-and-get/ajax/loging.php on line 7
[08-Feb-2024 22:50:51 America/New_York] PHP Notice:  Undefined index: user_password in /home/islapiiu/sites/pramudi/post-and-get/ajax/loging.php on line 8
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:51 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 4
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 9
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 55
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 65
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: name in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 8
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: email in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 9
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: password in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 10
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: phone_number in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 11
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: district in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 12
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: address in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 14
[08-Feb-2024 22:50:53 America/New_York] PHP Notice:  Undefined index: email in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 60
[08-Feb-2024 22:50:53 America/New_York] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:26 UTC] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/order.php on line 4
[28-Apr-2024 18:50:27 UTC] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 9
[28-Apr-2024 18:50:27 UTC] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 55
[28-Apr-2024 18:50:27 UTC] PHP Notice:  Undefined index: action in /home/islapiiu/sites/pramudi/post-and-get/ajax/action.php on line 65
[28-Apr-2024 18:50:27 UTC] PHP Notice:  Undefined index: user_email in /home/islapiiu/sites/pramudi/post-and-get/ajax/loging.php on line 7
[28-Apr-2024 18:50:27 UTC] PHP Notice:  Undefined index: user_password in /home/islapiiu/sites/pramudi/post-and-get/ajax/loging.php on line 8
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:27 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: name in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 8
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: email in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 9
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: password in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 10
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: phone_number in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 11
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: district in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 12
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: address in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 14
[28-Apr-2024 18:50:28 UTC] PHP Notice:  Undefined index: email in /home/islapiiu/sites/pramudi/post-and-get/ajax/registration.php on line 60
[28-Apr-2024 18:50:28 UTC] PHP Deprecated:  mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/pramudi/class/Database.php on line 22
ajax/loging.php000064400000001555150766310400007467 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');
session_start();
$CUSTOMER = new Customer(NULL);

$username = filter_var($_POST['user_email'], FILTER_SANITIZE_STRING);
$password = $_POST['user_password'];

if ($CUSTOMER->login($username, md5($password))) {
    $data = $CUSTOMER->login($username, md5($password));

    if (empty($data->image_name)) {
        $image_name = 'user.png';
    } else {
        $image_name = $data->image_name;
    }
    $redirect = '';
    if (!empty($_SESSION["back_url"])) {
        unset($_SESSION['back_url']);
        $redirect = 'checkout';
    }
    $result = ["status" => 'success', 'image_name' => $image_name, 'name' => $data->name, 'id' => $data->id, 'redirect' => $redirect];
    echo json_encode($result);
    exit();
} else {
    $result = ["status" => 'error'];
    echo json_encode($result);
    exit();
}
?>
 
ajax/change-password.php000064400000000676150766310400011300 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

$CUSTOMER = new Customer(NULL);

$code = $_POST["reset_code"];
$password = $_POST["password"];

 
if ($CUSTOMER->SelectResetCode($code)) {
    
    $CUSTOMER->updatePassword($password, $code);
    
    $result = ["status" => 'success'];
    echo json_encode($result);
    exit();
} else {
    $result = ["status" => 'error'];
    echo json_encode($result);
    exit();
}
?>
 
ajax/order.php000064400000006257150766310400007327 0ustar00<?php
include_once(dirname(__FILE__) . '/../../class/include.php');
session_start();
if ($_POST['action'] == 'ADDORDER') {
    
    $ORDER = new Order(NULL);
    date_default_timezone_set('Asia/Colombo');
    $orderedAt = date('Y-m-d H:i:s');

    $ORDER->orderedAt = $orderedAt;
    $ORDER->member = $_POST['member'];
    $ORDER->address = $_POST['address'];
    $ORDER->district = $_POST['district'];
    $ORDER->contactNo1 = $_POST['contactNo'];
    $ORDER->contactNo2 = $_POST['contactNo2'];
    $ORDER->orderNote = $_POST['orderNote'];
    $ORDER->amount = $_POST['amount'];
    $ORDER->delivery_charges = $_POST['delivery_charges'];
    $ORDER->status = 0;
    $ORDER->paymentStatusCode = 0;
    $ORDER->deliveryStatus = 0;

    $result = $ORDER->create();
    if ($result) {

        $_SESSION['current_order_id'] = $result;
        foreach ($_SESSION["shopping_cart"] as $product) {
            $ORDERPRODUCT = new OrderProduct(NULL);
            $ORDERPRODUCT->order = $result;
            $ORDERPRODUCT->product = $product['product_id'];
            $ORDERPRODUCT->qty = $product['product_quantity'];
            $ORDERPRODUCT->amount = $product['product_quantity'] * $product['product_price'];

            $result1 = $ORDERPRODUCT->create();
        }
        
       $ORD = new Order($result);
       $products = OrderProduct::getProductsByOrder($result);
       $res = $ORD->sendOrderMail($products);
       $res = $ORD->sendOrderMailToAdmin($products);

    //    unset($_SESSION["shopping_cart"]);
        $res['status'] = 'success';
        $res['order_id'] = $result;
        echo json_encode($res);
        exit();
    } else {
        $res['status'] = 'error';
        echo json_encode($res);
        exit();
    }
}
if (isset($_POST["action"]) == "ADDTOQTY") {

    if (isset($_SESSION["shopping_cart"])) {

        $is_available = 0;

        foreach ($_SESSION["shopping_cart"] as $key => $values) {
            
            if ($_SESSION["shopping_cart"] [$key] ['product_id'] == $_POST["product_id"]) {
                $is_available++;
                if (isset($_POST['quantity'])) {
                    $_SESSION["shopping_cart"][$key]
                            ['product_quantity'] = $_POST['quantity'];
                } else {
                    $_SESSION["shopping_cart"][$key]
                            ['product_quantity'] = $_SESSION["shopping_cart"][$key] ['product_quantity'] + $_POST["product_quantity"];
                }
            }
        }


        // if ($is_available == 0) {
        //     $iteam_array = array(
        //         'product_id' => $_POST["product_id"],
        //         'product_name' => $_POST["product_name"],
        //         'product_price' => $_POST["product_price"],
        //         'product_quantity' => $_POST["product_quantity"],
        //     );
        //     $_SESSION["shopping_cart"][] = $iteam_array;
        // }
    } else {
        $iteam_array = array(
            'product_id' => $_POST["product_id"],
            'product_name' => $_POST["product_name"],
            'product_price' => $_POST["product_price"],
            'product_quantity' => $_POST["product_quantity"]
        );
        $_SESSION["shopping_cart"][] = $iteam_array;
    }
}
?>
 
ajax/products-by-category.php000064400000007224150766310400012275 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

//All Product Filter
if ($_POST['action'] == 'GETFILTERPRODUCT') {
    $minimum_price = '';
    $maximum_price = '';
    $sub_category = '';
    $brand = '';

    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }
    if (isset($_POST["setlimit"])) {
        $setlimit = $_POST["setlimit"];
    }
    if (isset($_POST["pagelimit"])) {
        $page = $_POST["pagelimit"];
    }


    $PRODUCT = new Product(NULL);
    $result = $PRODUCT->getProductsBySubCategories($category, $minimum_price, $maximum_price, $sub_category, $brand, $page, $setlimit);
    echo $result;
}

//Get Max Price in Product
if ($_POST['action'] == 'GETMAXPRICE') {
    $sub_category = '';
    $brand = '';
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }


    $PRODUCT = new Product(NULL);

    $results = $PRODUCT->getMaxPriceInProduct($category, $sub_category, $brand);
    $result_data = $results[0];
    echo $result_data;
}

//Get Min pRice in Product
if ($_POST['action'] == 'GETMINPRICE') {
    $sub_category = '';
    $brand = '';
    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }


    $PRODUCT = new Product(NULL);

    $results = $PRODUCT->getMinPriceInProduct($category, $sub_category, $brand);
    $result_data = $results[0];
    echo $result_data;
}

//Pagination Show
if ($_POST['action'] == 'SHOWPAGINATION') {

    $minimum_price = '';
    $maximum_price = '';
    $category = '';
    $cat = '';
    $sub_category = '';
    $brand = '';
    $setlimit = '';
    $page = '';

    if (isset($_POST["minimum_price"])) {
        $minimum_price = $_POST["minimum_price"];
    }
    if (isset($_POST["maximum_price"])) {
        $maximum_price = $_POST["maximum_price"];
    }
    if (isset($_POST["sub_category"])) {
        $sub_category = $_POST["sub_category"];
    }
    if (isset($_POST["brand"])) {
        $brand = $_POST["brand"];
    }

    if (isset($_POST["category"])) {
        $category = $_POST["category"];
    }
    if (isset($_POST["cat"])) {
        $cat = $_POST["cat"];
    }
    if (isset($_POST["setlimit"])) {
        $setlimit = $_POST["setlimit"];
    }
    if (isset($_POST["page"])) {
        $page = $_POST["page"];
    }


    $PRODUCT = new Product(NULL);

    $result = $PRODUCT->showPagination($minimum_price, $maximum_price, $category, $cat, $sub_category, $brand, $setlimit, $page);

    echo $result;
}
 ajax/fetch_cart.php000064400000011650150766310400010307 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');
//featch_cart
session_start();

$product = 0;
$quantity = 0;
$total_item = 0;
$total_price = 0;
$output = '';
$cart = '';

$output .= '<table class="table">'
    . '<thead class="text-uppercase wow fadeInUp" data-wow-delay=".1s">'
    . '<tr>'
    . '<th></th>'
    . '<th>Product</th>'
    . '<th>Price</th>'
    . '<th>Quantity</th>'
    . '<th>subtotal</th>'
    . '</tr>'
    . '</thead>';
// unset($_SESSION["shopping_cart"]);
if (!empty($_SESSION["shopping_cart"])) {
    
    $output .= '<tbody>';

    foreach ($_SESSION["shopping_cart"] as $key => $value) {
        $PRODUCT = new Product($value["product_id"]);
        if($PRODUCT->parent  != 0) {
            $PARANT = new Product($PRODUCT->parent);
            $name = $PARANT->name . ' - ' . $value["product_name"];
            $image_name = $PARANT->image_name;
            $p_id = $PARANT->id;
            $min_qty = $PARANT->min_qty;
            $max_qty = $PARANT->max_qty;
            $unit = $PARANT->unit;
        } else {
            
            $name =  $value["product_name"];
            $image_name = $PRODUCT->image_name;
            $p_id = $PRODUCT->id;
            $min_qty = $PRODUCT->min_qty;
            $max_qty = $PRODUCT->max_qty;
            $unit = $PRODUCT->unit;
        }
// dd($value["product_price"]);
        $output .= '<tr class="wow fadeInUp" data-wow-delay=".1s">'
            . '<td>'
            . '<button type="button" class="remove_btn delete" name="delete" id="' . $value["product_id"] . '"><i class="fa fa-times"></i></button>'
            . '</td>'
            . '<td>'
            . '<div class="carttable_product_item">'
            . '<h3 class="item_title">' . $name . '</h3>'
            . '<div class="item_image">'
            . '<img src="upload/product/' . $image_name . '" alt="' . $PRODUCT->name . '" title="' . $PRODUCT->name . '" width="14%"/>'
            . '</div>'
            . '</div>'
            . '</td>'
            . '<td><span class="price_text1">US $' . number_format($value["product_price"], 2) . '</span></td>'
            . '<td><div class="quantity_input quantity">'
            . '<input type="number" name="quantity" size="1" class="form-control quantity qty-input" id="quantity' . $PRODUCT->id . '" min="' . $min_qty . '" max="' . $max_qty . '" step="' . $min_qty . '" product_id=' . $value["product_id"] . ' value="' . $value["product_quantity"] . '" />'
            . '</div>'
            . '</td>'
            . '<td class="text-right">US $' . number_format($value["product_quantity"] * $value["product_price"], 2) . '</td>'

            . ' <input type="hidden" class="form-control  "  product_id="' . $value["product_id"] . '" /> '
            . '<input type="hidden" class="form-control" id="price" name="price" value="' . $value["product_price"] . '"/>'
            . '<input type="hidden" class="form-control max"   value="' . $unit . '"/>'
            . '</tr>';

        $total_price = $total_price + ($value["product_quantity"] * $value["product_price"]);
        $total_item = $total_item + 1;
    }
    $output .= '</tbody><tfooter>'
        . '<tr>'
        . '<th colspan="4">Total</th>'
        . '<th class="text-right">US $' . number_format($total_price, 2) . '</th>'
        . '</tr>'
        . '</tfooter>';
} else {
    $output .= '<tbody><tr>'
        . '<td colspan="5" align="center" class="product-remove">'
        . 'Your Cart is Empty!.'
        . '</td>'
        . '</tr></tbody>';
}
$output .= '<input type="hidden" class="form-control" id="total_price"   value="' . $total_price . '"/>';
$output .= '</table>';
$tot1 = 0;
$items = 0;
$more_items = '';
if (!empty($_SESSION["shopping_cart"])) {
    foreach ($_SESSION["shopping_cart"] as $key1 => $product1) {
        $PRODUCT1 = new Product($product1['product_id']);
        $price1 = $product1['product_quantity'] * $product1['product_price'];
        $tot1 += $price1;
        $items += 1;

        if ($key1 < 3) {

            $cart .= '<tr>'
                . '<td class="text-center" style="width:70px">'
                . '<a href="#"> <img src="upload/product-categories/sub-category/product/photos/' . $PRODUCT1->image_name . '" style="width:70px" alt="' . $PRODUCT1->name . '" title="' . $PRODUCT1->name . '" class="preview"> </a>'
                . '</td>'
                . '<td class="text-left"> <a class="cart_product_name" href="product.php?id=' . $PRODUCT1->id . '">' . $PRODUCT1->name . '</a> </td>'
                . '<td class="text-center"> x' . $product1["product_quantity"] . ' </td>'
                . '<td class="text-center">US $' . number_format($price1, 2) . '</td>'
                . '</tr>';
        }
    }
}

//if ($items > 3) {
//    $more_items .= $items - 3 . ' more items.';
//}
$data = array(
    'cart_details' => $output,
    'cart_box' => $cart,
    'total_item' => $total_item,
    'total_price' => number_format($tot1, 2)
    //    'more_items' => $more_items
);
// dd($data);
echo json_encode($data);
ajax/reset-password.php000064400000005120150766310400011162 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

$CUSTOMER = new Customer(NULL);

$email = $_POST['email'];

if ($CUSTOMER->checkEmail($email)) {
    if ($CUSTOMER->GenarateCode($email)) {
        $res = $CUSTOMER->SelectForgetCustomer($email);

        $username = $CUSTOMER->name;
        $email = $CUSTOMER->email;
        $resetcode = $CUSTOMER->restCode;


        date_default_timezone_set('Asia/Colombo');
        $todayis = date("l, F j, Y, g:i a");
        $site_link = "https://" . $_SERVER['HTTP_HOST'];

        //----------------------- DISPLAY STRINGS ---------------------
        $comany_name = "Pramudi Gem & Jewelry";
        $website_name = "www.unblendedceylontea.com";
        $comConNumber = "+94 773 051 737";
        $comEmail = "[email protected]";
        $comOwner = "Team Pramudi Gem & Jewelry";
        $reply_email_name = "Pramudi Gem & Jewelry";
        $webmail = "[email protected]";
        
        $subject = 'Dashboard - Password Reset';



        $html = "<table style='border:solid 1px #F0F0F0; font-size: 15px; font-family: sans-serif; padding: 0;'>";

        $html .= "<tr><th colspan='3' style='font-size: 18px; padding: 30px 25px 0 25px; color: #fff; text-align: center; background-color: #4184F3;'><h2>Pramudi Gem & Jewelry</h2> </th> </tr>";

        $html .= "<tr><td colspan='3' style='font-size: 16px; padding: 20px 25px 10px 25px; color: #333; text-align: left; background-color: #fff;'><h3>" . $subject . "</h3> </td> </tr>";

        $html .= "<tr><td colspan='3' style='font-size: 14px; padding: 5px 25px 10px 25px; color: #666; background-color: #fff; line-height: 25px;'><b>Password Reset Code: </b> " . $resetcode . "</td></tr>";

        $html .= "<tr><td colspan='3' style='font-size: 14px; padding: 0 25px 10px 25px; color: #666; background-color: #fff; '><b>Email: </b> " . $email . "</td></tr>";

        $html .= "<tr><td colspan='3' style='font-size: 14px; background-color: #FAFAFA; padding: 25px; color: #333; font-weight: 300; text-align: justify; '>Thank you</td></tr>";

        $html .= "</table>";

        $HELPER = new Helper();
        $visitorMail = $HELPER->PHPMailer($webmail, $comany_name, $comEmail, $reply_email_name, $email, $username, $subject, $html);

        if ($visitorMail) {
            $result = ["status" => 'success'];
            echo json_encode($result);
            exit();
        } else {
            $result = ["status" => 'error'];
            echo json_encode($result);
            exit();
        }
    }
} else {

    $result = ["status" => 'error'];
    echo json_encode($result);
    exit();
}
ajax/create-guest-comment.php000064400000003573150767053250012252 0ustar00<?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (!isset($_SESSION)) {
    session_start();
}
//dd($_POST['txtFullName']);
if (isset($_POST['btnSubmit'])) {
    
    $response = array();
    if ($_SESSION['CAPTCHACODE'] != $_POST['captchacode']) {
        header('Content-Type: application/json');

        $result = [
            "message" => 'error'
        ];
        echo json_encode($result);
        exit();
    } else {
        $folder = '../../upload/comments/';
        $imgName = Helper::randamId();

        $handle = new Upload($_FILES['txtprofileimg']);

        if ($handle->uploaded) {

            $handle->image_resize = true;
            $handle->file_new_name_ext = 'jpg';
            $handle->image_ratio_crop = 'C';
            $handle->file_new_name_body = $imgName;
            $handle->image_x = 220;
            $handle->image_y = 220;

            $handle->Process($folder);

            if ($handle->processed) {
                $info = getimagesize($handle->file_dst_pathname);
                $imgName = $handle->file_dst_name;
                
            }
        }
        $COMMENT = new Comments(NULL);

        $COMMENT->name = $_POST["txtFullName"];
        $COMMENT->title = $_POST["txtCountry"];
        $COMMENT->image_name = $imgName;
        $COMMENT->comment = $_POST["txtMessage"];
        $res = $COMMENT->create();
        if ($res) {
            header('Content-Type: application/json');

            $result = [
                "filename" => $imgName,
                "id" => $COMMENT->id,
                "message" => 'success',
                
            ];
            echo json_encode($result);
            exit();
        } else {

            header('Content-Type: application/json');

            $result = [
                "message" => 'error'
            ];
            echo json_encode($result);
            exit();
        }
    }
}ajax/create-guest-comment.js000064400000005222150767053250012070 0ustar00$(document).ready(function () {
    
    jQuery("#txtFullName").blur(function () {
        validateEmpty("txtFullName", "spanFullName");
    });

    jQuery("#txtCountry").blur(function () {
        validateEmpty("txtCountry", "spanCountry");
    });

    jQuery("#txtprofileimg").blur(function () {
        validateEmpty("txtprofileimg", "spanprofileimg");
    });
    
    jQuery("#txtMessage").blur(function () {
        validateEmpty("txtMessage", "spanMessage");
    });

    jQuery("#captchacode").blur(function () {
        validateEmpty("captchacode", "capspan");
    });

    $('#btnSubmit').click(function (e) {
        e.preventDefault();
        if (!validate()) {
            return;
        }
        sendForm();
    });

    function validate() {
        if (
                validateEmpty("txtFullName", "spanFullName") &
                validateEmpty("txtCountry", "spanCountry") &
                validateEmpty("txtprofileimg", "spanprofileimg") &
                validateEmpty("txtMessage", "spanMessage") &
                validateEmpty("captchacode", "capspan")

                )
        {
            return true;
        } else {
            return false;
        }
    }

    function sendForm() {

        var formData = new FormData($('#guestcomment')[0]);
 
        $.ajax({
            url: "post-and-get/ajax/create-guest-comment.php",
            type: "POST",
            data: formData,
            async: false,
            dataType: 'json',
            success: function (message){
                if (message.success) {
                swal({
                    title: "Alert",
                    text: "Your Comment Has Been Submit Successfully .",
                    type: 'success',
                    timer: 2000,
                    showConfirmButton: false
                });

            }
        },
            cache: false,
            contentType: false,
            processData: false
        });
    };
    function validateEmpty(field, validatorspan)
    {

        if (jQuery('#' + field).val().length != 0)
        {
            jQuery('#' + validatorspan).addClass("validated");
            jQuery('#' + validatorspan).removeClass("notvalidated");
            jQuery('#' + validatorspan).fadeIn('slow').fadeOut(3000);
            jQuery('#' + validatorspan).text("");

            return true;
        } else
        {
            jQuery('#' + validatorspan).addClass("notvalidated");
            jQuery('#' + validatorspan).removeClass("validated");
            jQuery('#' + validatorspan).fadeIn('slow').fadeOut(3000);
            jQuery('#' + validatorspan).text("This field can not be empty");

            return false;
        }
    }

});


ajax/comment.php000064400000002771150767434050007664 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');
session_start();
// dd($_POST);
if (isset($_POST['create'])) {

    if ($_SESSION['CAPTCHACODE'] == $_POST['captcha']) {

        $COMMENT = new Comments(NULL);

        $COMMENT->name = $_POST['name'];
        $COMMENT->title = $_POST['title'];
        $COMMENT->comment = $_POST['comment'];

        $dir_dest = '../../upload/comments/';

        $handle = new Upload($_FILES['image']);

        $imgName = null;
        $img = Helper::randamId();

        if ($handle->uploaded) {
            $handle->image_resize = true;
            $handle->file_new_name_body = TRUE;
            $handle->file_overwrite = TRUE;
            $handle->file_new_name_ext = 'jpg';
            $handle->image_ratio_crop = 'C';
            $handle->file_new_name_body = $img;
            $handle->image_x = 300;
            $handle->image_y = 300;

            $handle->Process($dir_dest);

            if ($handle->processed) {
                $info = getimagesize($handle->file_dst_pathname);
                $imgName = $handle->file_dst_name;
            }
        }

        $COMMENT->image_name = $imgName;
        $COMMENT->is_active = 0;
        $COMMENT->queue = 0;

        $res = $COMMENT->create();
        if ($res) {
            $result = 'success';
        } else {
            $result = 'error';
        }

        echo json_encode($result);
        exit();
    } else {
        $result = 'wrong_code';
        echo json_encode($result);
        exit();
    }
}