logout.php 0000644 00000000356 15076433537 0006607 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
$MEMBER = new Member(NULL);
if ($MEMBER->logOut()) {
header('location: ../login-or-register.php');
} else {
header('location: ../?error=2');
}
service.php 0000644 00000007347 15076433537 0006745 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$SERVICE = new Service(NULL);
$VALID = new Validator();
$SERVICE->title = $_POST['title'];
$SERVICE->short_description = $_POST['short_description'];
$SERVICE->description = $_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 = $_POST['title'];
$SERVICE->short_description = $_POST['short_description'];
$SERVICE->description = $_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.php 0000644 00000001021 15076433537 0006374 0 ustar 00 <?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.php 0000644 00000007323 15076433537 0007133 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$ACTIVITY = new Activities(NULL);
$VALID = new Validator();
$ACTIVITY->title = $_POST['title'];
$ACTIVITY->short_description = $_POST['short_description'];
$ACTIVITY->description = $_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 = $_POST['title'];
$ACTIVITY->short_description = $_POST['short_description'];
$ACTIVITY->description = $_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.php 0000644 00000007002 15076433537 0007520 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$PHOTO_ALBUM = new PhotoAlbum(NULL);
$VALID = new Validator();
$PHOTO_ALBUM->title = $_POST['title'];
$PHOTO_ALBUM->description = $_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 = $_POST['title'];
$PHOTO_ALBUM->description = $_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.php 0000644 00000011446 15076433537 0010706 0 ustar 00 <?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.php 0000644 00000011425 15076433537 0007445 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$ATTRACTION = new Attraction(NULL);
$VALID = new Validator();
$ATTRACTION->title = $_POST['title'];
$ATTRACTION->short_description = $_POST['short_description'];
$ATTRACTION->description = $_POST['description'];
$dir_dest = '../../upload/attraction/';
$dir_dest_thumb = '../../upload/attraction/gallery/';
$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 = 442;
$handle->image_y = 355;
$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 = 470;
$handle->image_y = 347;
$handle->Process($dir_dest_thumb);
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: ' . $_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/';
$dir_dest_thumb = '../../upload/attraction/gallery/';
$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 = 442;
$handle->image_y = 355;
$handle->Process($dir_dest);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
}
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 = 470;
$handle->image_y = 347;
$handle->Process($dir_dest_thumb);
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 = $_POST['title'];
$ATTRACTION->short_description = $_POST['short_description'];
$ATTRACTION->description = $_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.php 0000644 00000011243 15076433537 0007362 0 ustar 00 <?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 = $_POST['title'];
$TOUR_DATE->description = $_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.php 0000644 00000011215 15076433537 0010061 0 ustar 00 <?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 = $_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 = $_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.php 0000644 00000007341 15076433537 0006757 0 ustar 00 <?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 = 372;
$handle->image_y = 277;
$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 = 372;
$handle->image_y = 277;
$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.php 0000644 00000011143 15076433537 0007375 0 ustar 00 <?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 = $_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_log 0000644 00003444427 15076433537 0006520 0 ustar 00 [08-Apr-2019 04:32: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:32: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 14:02: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 14:02: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:36: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:36: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:36: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:37: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:37: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:37: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:48: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:48: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:48: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:49: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:49: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:49: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:51:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 25
[08-Apr-2019 04:51: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:51: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:54:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 25
[08-Apr-2019 04:54: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/vinulankatours/class/Database.php on line 25
[08-Apr-2019 04:54: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:22: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:22:36 America/New_York] PHP Warning: mysql_connect(): Too many connections in /home/islapiiu/sites/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:25: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:25: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 12:55: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 12:55: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:34:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:34: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:34: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:34:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:34: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:34: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:35:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:35: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:35: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:35:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:35: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:35: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:38:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:38: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:38: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:39:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:39: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:39: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:40:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:40: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:40: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:43:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[09-Apr-2019 03:43: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/vinulankatours/class/Database.php on line 25
[09-Apr-2019 03:43: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/vinulankatours/class/Database.php on line 25
[12-Apr-2019 02:35:18 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[12-Apr-2019 02:35:18 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[23-Apr-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/vinulankatours/class/Database.php on line 25
[23-Apr-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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 09:44:10 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/vinulankatours/class/Database.php on line 25
[23-Apr-2019 09:44:10 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:20: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:20: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:20: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:44: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:44: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:44: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:49:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 00:49: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:49: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:49: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:50:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 00:50: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:50: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:50: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:55:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 00:55: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:55: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:55: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00:58:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[23-Apr-2019 00:58:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[23-Apr-2019 00: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 00: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:00:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[23-Apr-2019 01:00:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[23-Apr-2019 01:00: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:00: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:01:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[23-Apr-2019 01:01:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[23-Apr-2019 01:01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01:05: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01:05: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:05: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:09:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01:09: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:09: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:09: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:14:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[23-Apr-2019 01:14:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[23-Apr-2019 01:14: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:14: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:17:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01:17: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:17: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:17: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:18: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:18: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:18: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:19:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[23-Apr-2019 01:19:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[23-Apr-2019 01:19: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:19: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:20:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:21:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[23-Apr-2019 01:21:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[23-Apr-2019 01:21: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:21: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:21:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[23-Apr-2019 01:21: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:21: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/vinulankatours/class/Database.php on line 25
[23-Apr-2019 01:21: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:16: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:16: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 08:46: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 08:46: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:18: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:18: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:18: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:26: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:26: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:26: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:26: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:26: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:26: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:28:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[24-Apr-2019 23:28: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:28: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:28:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[24-Apr-2019 23:28: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:28: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:28:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[24-Apr-2019 23:28: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:28: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:33: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:33: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:33: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/photo-album.php on line 23
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:50: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:51:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[24-Apr-2019 23:51: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/vinulankatours/class/Database.php on line 25
[24-Apr-2019 23:51: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:06:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[25-Apr-2019 00:06: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:06: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:06:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[25-Apr-2019 00:06: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:06: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:13: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:13: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:13: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:13: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:13: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/vinulankatours/class/Database.php on line 25
[25-Apr-2019 00:13: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:13: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:13: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 13:43: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 13:43: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:15: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:15: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:15: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:22: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:22: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:22: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:33: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:33: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:33: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:35:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:35: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:35: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:42:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:42: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:42: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:43:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 04:43: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:44:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 04:44: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:44: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:45:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:45: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:45: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:45:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:46:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:46: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:46: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:46:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:46: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:46: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:53:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:53:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:53: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:53: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:53:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:53: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:53: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:54:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:54: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:54: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:54:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:54: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:54: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:58:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 04:58: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:58: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:58:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:59:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:59: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:59: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:59:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:59:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 04:59: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 04:59: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:17:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:17:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:17: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:17: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:18:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:18: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:18: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:18:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:18: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:18: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:18:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:18: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:18: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:20:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05:20: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:20: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:20:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:20: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:20: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:21:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:21:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:21:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:21: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:23:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:23:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:23: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:24:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:24: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:24: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:24:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:24:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:29:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05:29: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:29: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:29:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:29: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:29: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:30:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:30: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:30: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:33:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:33:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:33: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:33: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:35:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05:35: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:35: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:36: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:36: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:36: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:36:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:38:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:39: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:41:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity.php on line 24
[30-Apr-2019 05:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:41:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:41:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:41: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:42:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:42: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:42: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:42:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/activity-photo.php on line 19
[30-Apr-2019 05:42: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/vinulankatours/class/Database.php on line 25
[30-Apr-2019 05:42: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/vinulankatours/class/Database.php on line 25
[01-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[01-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 08:42: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/vinulankatours/class/Database.php on line 25
[02-May-2019 08:42: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/vinulankatours/class/Database.php on line 25
[01-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[01-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[01-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 10:47: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/vinulankatours/class/Database.php on line 25
[02-May-2019 10:47: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:19:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[02-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:20:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[02-May-2019 01:20: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:20: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:20: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:27:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[02-May-2019 01:27:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[02-May-2019 01: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:28:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:28:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:28:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:29:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:29:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 112
[02-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[02-May-2019 01:31:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:33:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 26
[02-May-2019 01:33:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 41
[02-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:33:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:33:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:34:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:34: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:34: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:35:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 01:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 01:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:01:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 115
[02-May-2019 02:01: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:01: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:01: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:02:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 115
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:04:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:08:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:09:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:09:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:09:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:10:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:14:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:14:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:15:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:15:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:15:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:19:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:21:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:22:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:22:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:22:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:23:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:23: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:23: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:26:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:26: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:26: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:26:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:26: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:26: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:26:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:27:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:27:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:29:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:29: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:30:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:30: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:30: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:30:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:30: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:30: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:31:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:31:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:31: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:35:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:36:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:36: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:36: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:36:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:37:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:37: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:37: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:38:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:52:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:55:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:57:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:57:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:58:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:58: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:58: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:58:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 02:58: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/vinulankatours/class/Database.php on line 25
[02-May-2019 02:58: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:04:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:05:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:05: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:05: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:06:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:06: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:06: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:06:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:06: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:06: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:06:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-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/vinulankatours/class/Database.php on line 25
[02-May-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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:07:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:08:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:08:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:09:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:09:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:13:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:13: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:13: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:14:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:14: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:14: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:15:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:15:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:15:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:17:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:17:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:17:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:18:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:18:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:20:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:20: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:20: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:23:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:23:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:24:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:24:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:24:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:25:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:26: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:26: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 03:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:35: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:39:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 03:39: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/vinulankatours/class/Database.php on line 25
[02-May-2019 03:39: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:07:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:07:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:07:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:07: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:08:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:10:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 04:10: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:10: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:11:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:11: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:11: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:11:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:11: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:11: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:11:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:12: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:14:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:16:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction.php on line 19
[02-May-2019 04:16: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:16: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:17:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:17:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:18:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:18:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[02-May-2019 04:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 04:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:08: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/vinulankatours/class/Database.php on line 25
[02-May-2019 14:38: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/vinulankatours/class/Database.php on line 25
[02-May-2019 14:38: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:17: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:18: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:32: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:32: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/vinulankatours/class/Database.php on line 25
[02-May-2019 05:32: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[06-May-2019 08:33: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/vinulankatours/class/Database.php on line 25
[06-May-2019 08:33: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:04: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:08: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:09: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:09: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:09: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:09: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:09: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:09: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[05-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[06-May-2019 09:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 09:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:22:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 00:22: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:22: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:27: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:27: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:27: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:28: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:28: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:28: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:31: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:31: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:31: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:33: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:33: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:35: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:35: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:36: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:36: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:36: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:42:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:47:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 00:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:48:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:49:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:49: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:49: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:49:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:49: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:49: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:51:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:51: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:51: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:53:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:53:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 00:53: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:53: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:54: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:54: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:54: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:56:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-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/vinulankatours/class/Database.php on line 25
[06-May-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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:56:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:56: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:56: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:57:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 00:57: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:57: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/vinulankatours/class/Database.php on line 25
[06-May-2019 00:58:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-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/vinulankatours/class/Database.php on line 25
[06-May-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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:01:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[06-May-2019 01:01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:02:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 01:02: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:02: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:05:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:05: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:05: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:06:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:06:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:07:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:07: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:07: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:08:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[06-May-2019 01:08: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:08: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:09:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 01:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:10:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:10:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:10:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:11:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:11: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:11: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:13:16 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[06-May-2019 01:13: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:13: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:14:16 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:14:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:14: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:14: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:15:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:15:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:15:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:17:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[06-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:18:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:18:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:19:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:19:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:19:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:23:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[06-May-2019 01:23: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:23:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[06-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:24:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:24:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:24:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 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/vinulankatours/class/Database.php on line 25
[06-May-2019 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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:25:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[06-May-2019 01:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 01:25: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:24: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/vinulankatours/class/Database.php on line 25
[06-May-2019 12:54: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/vinulankatours/class/Database.php on line 25
[06-May-2019 12:54: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:32: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:32: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:32: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:41: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:43: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:43: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:43: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:45: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:45: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/vinulankatours/class/Database.php on line 25
[06-May-2019 03:45: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:40: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:40: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/vinulankatours/class/Database.php on line 25
[06-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:43: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:43: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:43: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:45: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:45: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:45: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:47: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:57: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:57: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/vinulankatours/class/Database.php on line 25
[06-May-2019 04:57: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/vinulankatours/class/Database.php on line 25
[06-May-2019 06:52: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/vinulankatours/class/Database.php on line 25
[06-May-2019 06:52: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/vinulankatours/class/Database.php on line 25
[06-May-2019 16:22: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/vinulankatours/class/Database.php on line 25
[06-May-2019 16:22: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[06-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[07-May-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/vinulankatours/class/Database.php on line 25
[07-May-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/vinulankatours/class/Database.php on line 25
[07-May-2019 15:12: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/vinulankatours/class/Database.php on line 25
[07-May-2019 15:12: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:29:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[07-May-2019 06:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:29:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[07-May-2019 06:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:30:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[07-May-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/vinulankatours/class/Database.php on line 25
[07-May-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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:30:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/attraction-photo.php on line 20
[07-May-2019 06:30: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:30: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:49:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[07-May-2019 06:49:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[07-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:50: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:50: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:50: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:50: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:51:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 06:51: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:51: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:51:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 06:51: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/vinulankatours/class/Database.php on line 25
[07-May-2019 06:51: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:24: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:54: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:54: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:26:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 22:26: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:26: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:31:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 22:31: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:31: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:31:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 22:31: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:31: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:34:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 22:34: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:34: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22:35:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 22: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/vinulankatours/class/Database.php on line 25
[07-May-2019 22: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:00:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:01:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:02:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:08:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:10:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:10:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:11:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:11:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:11:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:11: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:19:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 23:19: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:19: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:19:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:20:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:20: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:20: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:20:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:20: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:20: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:21:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:21: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:21: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:28:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[07-May-2019 23:28:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[07-May-2019 23:28: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:28: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:29:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 23:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:29:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:29:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:29: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:31:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:34:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:34: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:34: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:36:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 23:36: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:36: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:37:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:38:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:45:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:45: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:45: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:46:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:53:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[07-May-2019 23:53: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:53: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:54:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:54: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:54: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:59:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[07-May-2019 23:59: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/vinulankatours/class/Database.php on line 25
[07-May-2019 23:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:09:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:12:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:12:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:14:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 00:14: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:14: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:16:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:16:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:17:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:23:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:23:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:24:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:25:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:25:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:25: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:26:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:32:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:32: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:32: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:32:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 00:32: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:32: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:35: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:35: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:35: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 00:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:06:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[08-May-2019 01:06:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[08-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:07:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 01:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:17:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:18:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 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/vinulankatours/class/Database.php on line 25
[08-May-2019 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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:18:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:19:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:19:20 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[08-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:19:20 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[08-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:19:20 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[08-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:19:20 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[08-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:20:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:23:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:24:16 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:24:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:27:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:27: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:27: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:29:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01:58:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[08-May-2019 01:58:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[08-May-2019 01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:06:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:09:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:10:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:10:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:11:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:11:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:19:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:19:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:20:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:20:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:21:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:32:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:33:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:33:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:34:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:34:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:36:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 02:36: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:36: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:36:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:36: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:36: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:37:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:37: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:37: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:38:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:39:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:39: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:39: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:40:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:43:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 02:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:52:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:53:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:53:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:54:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[08-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:06:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:07:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 03:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:08:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:08:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:08:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:13:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[08-May-2019 04:13:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[08-May-2019 04:13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:15: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:15: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:15: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:16:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 04:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:16:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 04: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:17:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 04:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:17:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 04:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:20:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 04:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 04:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:50: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:50: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/vinulankatours/class/Database.php on line 25
[08-May-2019 15:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 15:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:56:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 05:56: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:56: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:59:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:59:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:00:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:02:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:03:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:04:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:04: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:04: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:04:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:04: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:04: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:05:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:05:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:06:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-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/vinulankatours/class/Database.php on line 25
[08-May-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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:08:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:09:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:09:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:09:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:18:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 06:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:19:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:21:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:21:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:22:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:24:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 06:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 06:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 16:46: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/vinulankatours/class/Database.php on line 25
[08-May-2019 16:46: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:28: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[08-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 19:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 19:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:30:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 10:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:30:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 10:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:31:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 10:31: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:31: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:33:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 10:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 10:59:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 10:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 10:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 20:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 20:29: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:08:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 11:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:08: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:09:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:09:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:12:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:12:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:12:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:18:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 11:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:18:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:18:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:19:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:19:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:19: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:20:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 11:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:20:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:20:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:20: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:21:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:21:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 11:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 11:21: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/vinulankatours/class/Database.php on line 25
[08-May-2019 12:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 12:12: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/vinulankatours/class/Database.php on line 25
[08-May-2019 21:42: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/vinulankatours/class/Database.php on line 25
[08-May-2019 21:42: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:11:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[08-May-2019 13:11:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[08-May-2019 13:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:11: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:14: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:15: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:15: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:15: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:16:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 13:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:16: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:17:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:17: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:18:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:18: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:28:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:30:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:38:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:38:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:39:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:39: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:39: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:39:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:39: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:39: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:39:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:41:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 13:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:41:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:43:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:43:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:43: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:44:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:44: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:44: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:44:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 13:44: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:44: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/vinulankatours/class/Database.php on line 25
[08-May-2019 13:50:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 13:50: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:07:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 14:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:09:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 14:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:09: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:10:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:10:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:10:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 14:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[09-May-2019 07:47: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/vinulankatours/class/Database.php on line 25
[09-May-2019 07:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:23:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:23:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:23: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:24:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:24:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:24: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:25:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:25: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:25: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:26:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:26: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:26: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:27:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:27: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:27: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:30:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:30: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:32:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:32: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:32: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:33:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:33: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:35:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:35: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:35: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:37:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:37: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:37: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:38:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:38:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:38:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:38: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:41: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:44:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:44: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:44: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:45:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:45: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:45: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:45:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:45: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:45: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:45:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:45: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:45: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:46:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:46: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:46: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:47: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:48:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:48:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:48: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:52:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:53:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:53: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:54:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:54: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:54:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:54: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:54: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:55:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:55: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:55: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:55:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:55: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:55: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:56:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:56:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:56: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:56: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:57:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:57: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:57: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:57:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:57: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:57: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:58:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:58: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:58: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:58:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:58:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:58: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:58: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:59:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[08-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:59:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:59:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:00: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:02:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:03:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:03:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:03: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:05:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:05:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:05: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:07:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:07:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:07: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:10:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[08-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[08-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[09-May-2019 00:08: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/vinulankatours/class/Database.php on line 25
[09-May-2019 00:08: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/vinulankatours/class/Database.php on line 25
[09-May-2019 09:38: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/vinulankatours/class/Database.php on line 25
[09-May-2019 09:38: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/vinulankatours/class/Database.php on line 25
[09-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[09-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[09-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[09-May-2019 11:03: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/vinulankatours/class/Database.php on line 25
[09-May-2019 11:03: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:33: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:34: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:34: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/vinulankatours/class/Database.php on line 25
[09-May-2019 01:34: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:05: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:05: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/vinulankatours/class/Database.php on line 25
[09-May-2019 11:35: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/vinulankatours/class/Database.php on line 25
[09-May-2019 11:35: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:07: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:11: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:25: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:25: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:25: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[09-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04:00: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04:00: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04:00: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/vinulankatours/class/Database.php on line 25
[09-May-2019 13:30: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/vinulankatours/class/Database.php on line 25
[09-May-2019 13:30: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04:02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04:02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 04:02: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05: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/vinulankatours/class/Database.php on line 25
[09-May-2019 14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 14: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05:37: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05:37: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05:37: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05:41: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05:41: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/vinulankatours/class/Database.php on line 25
[09-May-2019 05:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:30: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:30: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/vinulankatours/class/Database.php on line 25
[10-May-2019 16:00: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/vinulankatours/class/Database.php on line 25
[10-May-2019 16:00: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:38: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:39: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:42: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:42: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:42: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:44:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:45:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[10-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:45:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[10-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:53:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/album-photo.php on line 19
[10-May-2019 06:53: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:53: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:58: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:58: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/vinulankatours/class/Database.php on line 25
[10-May-2019 06:58: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/vinulankatours/class/Database.php on line 25
[12-May-2019 22:46: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/vinulankatours/class/Database.php on line 25
[12-May-2019 22:46: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/vinulankatours/class/Database.php on line 25
[13-May-2019 08:16: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/vinulankatours/class/Database.php on line 25
[13-May-2019 08:16: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/vinulankatours/class/Database.php on line 25
[12-May-2019 22: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/vinulankatours/class/Database.php on line 25
[12-May-2019 22: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/vinulankatours/class/Database.php on line 25
[12-May-2019 22: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/vinulankatours/class/Database.php on line 25
[13-May-2019 06:27:08 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[13-May-2019 06:27:08 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[14-May-2019 08:04:18 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[14-May-2019 08:04:18 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[16-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[16-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[16-May-2019 10:00: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/vinulankatours/class/Database.php on line 25
[16-May-2019 10:00: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/vinulankatours/class/Database.php on line 25
[16-May-2019 00: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/vinulankatours/class/Database.php on line 25
[16-May-2019 00: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/vinulankatours/class/Database.php on line 25
[16-May-2019 00: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/vinulankatours/class/Database.php on line 25
[16-May-2019 06:58: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/vinulankatours/class/Database.php on line 25
[16-May-2019 06:58: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/vinulankatours/class/Database.php on line 25
[16-May-2019 16:28: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/vinulankatours/class/Database.php on line 25
[16-May-2019 16:28: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:02: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:02: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:02: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:11: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:11: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:11: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:15: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:15: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:15: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:23:57 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:23: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:23:57 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:23: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:23:57 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:23: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:23:57 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:23: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:23:57 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:23: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:24:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[16-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:25:02 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:25:02 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:25:02 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:25:02 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:25:02 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:25:02 America/New_York] PHP Strict Standards: Non-static method Slider::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 135
[16-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:27:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/slider.php on line 23
[16-May-2019 07:28: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:28: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:35: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:35: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:35: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07: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/vinulankatours/class/Database.php on line 25
[16-May-2019 07: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/vinulankatours/class/Database.php on line 25
[16-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[16-May-2019 22:49: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/vinulankatours/class/Database.php on line 25
[17-May-2019 08:19: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/vinulankatours/class/Database.php on line 25
[17-May-2019 08:19: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/vinulankatours/class/Database.php on line 25
[16-May-2019 23:47: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/vinulankatours/class/Database.php on line 25
[16-May-2019 23:47: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/vinulankatours/class/Database.php on line 25
[16-May-2019 23:47: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[19-May-2019 16:55: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/vinulankatours/class/Database.php on line 25
[19-May-2019 16:55: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:38:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[19-May-2019 07:38:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[19-May-2019 07:38: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:38: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:41:10 America/New_York] PHP Strict Standards: Non-static method TourPackage::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 182
[19-May-2019 07:41: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:47: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:48:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[19-May-2019 07:48: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:48: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:49:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[19-May-2019 07:49: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:49: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:50:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[19-May-2019 07:50: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:50: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:50:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[19-May-2019 07:50: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:50: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:54:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[19-May-2019 07:54: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/vinulankatours/class/Database.php on line 25
[19-May-2019 07:54: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:07: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:07: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:07: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:09: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:09: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:09: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:10: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:10: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:10: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:10: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:10: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:10: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:13: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:13: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:13: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:20: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:20: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:20: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:29: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:29: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:29: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:29: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:29: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:29: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:30: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:31: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:31: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/vinulankatours/class/Database.php on line 25
[19-May-2019 08:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 01:25: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/vinulankatours/class/Database.php on line 25
[21-May-2019 01:25: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/vinulankatours/class/Database.php on line 25
[21-May-2019 10:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 10:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 01:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 01:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 11:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 11:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:09:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 02:09:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:10:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:13:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:16:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:16:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:17:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:19:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:20:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:20:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:20:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:21:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:22:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:23:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:24:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:26:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:27:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:27:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:27: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:28:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:28: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:28: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:29:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:29:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:29:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:34:13 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:34:13 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:34:13 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:34:13 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 02:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:43:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 02:43:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 02:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:46:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:47:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:47:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:48:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:49:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:49:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:50:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:51:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:51: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:51: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:54:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:54:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:56:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:56: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:56: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:56:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:56: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:56: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:56:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 02:56: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:56: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 02:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:10:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 03:10:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15:20 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:18:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:19:07 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 03:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:19:07 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 03:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:19:07 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 03:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:19:07 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 03:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:20:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:21:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:23:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:23:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:23:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:25:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:25:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:25: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:25: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:26:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 03:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:28:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:28: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:28: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:28:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:28: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:28: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:29:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:29:16 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:30:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 03:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:40:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:43:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 03:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 03:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:32:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 14:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 14:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:34:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:35:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 04:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36:51 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:41:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 04:41:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 04:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:43:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 04:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:46:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:46:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:46:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:47:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:48:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:48:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:49:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:49:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:49:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50:52 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50:52 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50:52 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:50:52 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 04:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:52:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 04:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:52:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:52:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:53:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:53:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:57:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 04:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:59:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04:59:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02:47 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02:47 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02:47 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:02:47 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 05:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:05:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:13:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:13:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:13:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:14:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:14:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:15:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:16:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:16:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:24:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:24:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:24:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:27:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:27: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:27: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:43:09 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 05:43:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 05:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:44:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:44:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:44:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:45:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:45:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:45:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:47:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:48:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:49:48 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:49:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:51:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:51: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:51: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:52:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:52:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:53:47 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:53:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:54:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:54:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:55:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:55:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:55:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:56:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:57:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:58:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:58:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:59:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:59:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:59:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 05:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:00:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:00:27 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:01:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:01:55 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:01:55 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:01:55 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:01:55 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:02:18 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:02:18 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:02:18 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:02:18 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:02:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:03:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:03:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:03:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:04:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:05:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:07:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:08:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:08:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:16:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:19:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:20:31 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:20:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:22:38 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:22:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:24:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 06:40:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:40: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:42:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43:13 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 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/vinulankatours/class/Database.php on line 25
[21-May-2019 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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43:52 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 16:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 16:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:45:33 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:45: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:48: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 27
[21-May-2019 06:49:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 40
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:49: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:52:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:52:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:52: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:53:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:53: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:54:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:55: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:57:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 06:57: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:58:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:59:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:59:10 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:59:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 06:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 06:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:00:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:00:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:00:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:00:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:00: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:01:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:01:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:01:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:02:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:02:45 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:02: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:03:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:03:56 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:03: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:04:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:04:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:04:16 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:04: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:05:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:05: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:07:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:07:55 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:08:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:08: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:09:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:09:11 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:09:28 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:09: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:10:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:11:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:11: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:11: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:12:19 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:12: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:12: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:13:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:13: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:15:43 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:15: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:17:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:18:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:18: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:19:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:19:17 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:19:17 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:19:18 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 07:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:19:18 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 07:19: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:20:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:20:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:20: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:21:08 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:21:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:21:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:21: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:22:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:22: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:23:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:24:54 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:24:57 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:24: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:25:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:25: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:26: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:29:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:29: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:30: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:34: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:35:53 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:36:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:36:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:36:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 07:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:36: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:06: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:54: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:24:09 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/vinulankatours/class/Database.php on line 25
[22-May-2019 08:24:09 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/vinulankatours/class/Database.php on line 25
[21-May-2019 22:58:29 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 22:58: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:58: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:59:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 22:59: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:01:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:01:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:01: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:06: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:36: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:36: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:10: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:12: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:14: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:16: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:46: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/vinulankatours/class/Database.php on line 25
[22-May-2019 08:46: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:17:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-package.php on line 25
[21-May-2019 23:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:17: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23:18 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23:35 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23:50 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23:58 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31:30 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31:46 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:31: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:32:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:32:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:32: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:33:02 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:33: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:33:12 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35:05 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35:59 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:35: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:37:16 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:37:34 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:37:40 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:37: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38:03 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38:28 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38:28 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38:28 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:38:28 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[21-May-2019 23:38: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39:14 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:39: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39:23 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:39: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39:39 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:39: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:39: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:40:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41:15 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41:25 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41:42 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:41: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:42: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:43:06 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:43:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:43: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:44:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:44: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:47:07 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:47: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:50:00 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:50:21 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:50:37 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:50: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:51:41 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[21-May-2019 23:51: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/vinulankatours/class/Database.php on line 25
[21-May-2019 23:51: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:02:32 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:03:17 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:03:36 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:03:49 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:07:24 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-dates.php on line 20
[22-May-2019 00:07: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:07: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:09:26 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:10:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:11:01 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:11: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:11: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:15:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 19
[22-May-2019 00:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:28: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:28: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:28: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:38: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:38: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/vinulankatours/class/Database.php on line 25
[22-May-2019 00:38: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:13: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:13: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:13: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:15: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:17: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:18: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:19: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:23: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:23: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:23: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:24: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:27: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:27: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:27: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:29: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:32: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:32: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:32: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:32: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:32: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:32: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:35: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:35: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:35: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:38: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:38: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:38: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:41: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:41: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:41: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:41: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:41: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:41: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:43: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:43: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:43: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:45: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:45: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:45: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:45: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:45: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:45: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:50: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:50: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:50: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:51: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:51: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:51: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:56: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:56: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:56: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:57: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:57: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:57: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:59: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:59: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:59: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/vinulankatours/class/Database.php on line 25
[22-May-2019 01:59: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:00: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:01: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:04: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:04: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:04: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:08: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10:43 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10:43 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10:43 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:10:43 America/New_York] PHP Strict Standards: Non-static method TourDatePhoto::arrange() should not be called statically in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/tour-date-photo.php on line 167
[22-May-2019 02:10: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:12: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:13: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:14: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:16: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:17: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/vinulankatours/class/Database.php on line 25
[22-May-2019 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/vinulankatours/class/Database.php on line 25
[22-May-2019 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/vinulankatours/class/Database.php on line 25
[22-May-2019 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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:21: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:53: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 02:54: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/vinulankatours/class/Database.php on line 25
[22-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 03:09: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/vinulankatours/class/Database.php on line 25
[22-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[22-May-2019 06:22: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/vinulankatours/class/Database.php on line 25
[22-May-2019 15:52: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/vinulankatours/class/Database.php on line 25
[22-May-2019 15:52: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/vinulankatours/class/Database.php on line 25
[22-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[22-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[22-May-2019 06:23: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/vinulankatours/class/Database.php on line 25
[28-May-2019 23:40: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/vinulankatours/class/Database.php on line 25
[28-May-2019 23:40: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/vinulankatours/class/Database.php on line 25
[29-May-2019 09:10: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/vinulankatours/class/Database.php on line 25
[29-May-2019 09:10: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/vinulankatours/class/Database.php on line 25
[28-May-2019 23:59: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/vinulankatours/class/Database.php on line 25
[28-May-2019 23:59: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/vinulankatours/class/Database.php on line 25
[29-May-2019 09:29: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/vinulankatours/class/Database.php on line 25
[29-May-2019 09:29: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:01: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:01: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:01: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:03: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:04: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:04: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:04: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:05: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:05: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:05: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:05: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:05: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:05: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:12: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:14: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:14: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:14: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:15: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:15: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:15: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:16: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/vinulankatours/class/Database.php on line 25
[29-May-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/vinulankatours/class/Database.php on line 25
[29-May-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/vinulankatours/class/Database.php on line 25
[29-May-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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:17: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:18: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:18: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:18: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/vinulankatours/class/Database.php on line 25
[29-May-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/vinulankatours/class/Database.php on line 25
[29-May-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/vinulankatours/class/Database.php on line 25
[29-May-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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:19: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:19: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:19: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:19: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:19: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:19: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:20: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:20: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:20: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:20: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:20: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:20: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:21: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:22: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:22: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:22: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:24: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:26: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:27: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:27: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:27: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:30: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:31: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:31: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:31: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:33: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:33: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:33: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:34: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:37: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:37: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:37: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:37: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:37: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:37: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:38: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:38: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:38: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:39: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:39: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/vinulankatours/class/Database.php on line 25
[29-May-2019 00:39: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/vinulankatours/class/Database.php on line 25
[14-Jun-2019 11:15:42 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[14-Jun-2019 11:15:42 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[22-Jul-2019 01:08:01 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[22-Jul-2019 01:08:01 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[22-Aug-2019 07:34:09 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[22-Aug-2019 07:34:09 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[23-Sep-2019 14:11:11 America/New_York] PHP Notice: Undefined index: username in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 7
[23-Sep-2019 14:11:11 America/New_York] PHP Notice: Undefined index: password in /home/islapiiu/sites/vinulankatours/control-panel/post-and-get/login.php on line 8
[24-Oct-2023 03:15: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:15: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 12:45: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 12:45: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:19: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:26: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:26: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/umesh-tours/class/Database.php on line 25
[24-Oct-2023 03:26: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:09: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:09: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 20:39:09 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/umesh-tours/class/Database.php on line 25
[28-Oct-2023 20:39:09 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:22:04 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/umesh-tours/control-panel/post-and-get/album-photo.php on line 19
[28-Oct-2023 11:22: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:22: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:23:22 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/umesh-tours/control-panel/post-and-get/album-photo.php on line 19
[28-Oct-2023 11:23: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:23: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:42:44 America/New_York] PHP Strict Standards: Non-static method Helper::randamId() should not be called statically in /home/islapiiu/sites/umesh-tours/control-panel/post-and-get/album-photo.php on line 19
[28-Oct-2023 11:42: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/umesh-tours/class/Database.php on line 25
[28-Oct-2023 11:42: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 06:27: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 06:27: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 15:57: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 15:57: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 06:31:03 America/New_York] PHP Strict Standards: Non-static method User::checkOldPass() should not be called statically in /home/islapiiu/sites/umesh-tours/control-panel/post-and-get/change-password.php on line 7
[02-Nov-2023 06:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 06:31:03 America/New_York] PHP Strict Standards: Non-static method User::changePassword() should not be called statically in /home/islapiiu/sites/umesh-tours/control-panel/post-and-get/change-password.php on line 11
[02-Nov-2023 06:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:18: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:18: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 16:48: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 16:48: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 17:01: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 17:01: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 17:01: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 17:01: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 07:31: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 17:01: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/umesh-tours/class/Database.php on line 25
[02-Nov-2023 17:01: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/umesh-tours/class/Database.php on line 25
[27-Apr-2024 06:19:57 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/umesh-tours/class/Database.php on line 25
[27-Apr-2024 06:19:57 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/umesh-tours/class/Database.php on line 25
[27-Apr-2024 11:49: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/umesh-tours/class/Database.php on line 25
[27-Apr-2024 11:49: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/umesh-tours/class/Database.php on line 25
[28-Apr-2024 02:19:42 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/umesh-tours/class/Database.php on line 25
[28-Apr-2024 02:20:10 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/umesh-tours/class/Database.php on line 25
[28-Apr-2024 02:20:10 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/umesh-tours/class/Database.php on line 25
[28-Apr-2024 07:50:10 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/umesh-tours/class/Database.php on line 25
[28-Apr-2024 07:50:10 Asia/Colombo] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/islapiiu/sites/umesh-tours/class/Database.php on line 25
[06-Jun-2024 15:58:53 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/umesh-tours/class/Database.php on line 25
[06-Jun-2024 15:58:53 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/umesh-tours/class/Database.php on line 25
[06-Jun-2024 21:28: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/umesh-tours/class/Database.php on line 25
[06-Jun-2024 21:28: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/umesh-tours/class/Database.php on line 25
change-password.php 0000644 00000003164 15076433537 0010363 0 ustar 00 <?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.php 0000644 00000010723 15076433537 0007524 0 ustar 00 <?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 = 300;
$handle->image_y = 175;
$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 = 300;
$handle->image_y = 175;
$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 = $_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.php 0000644 00000006102 15076433537 0006370 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$PAGES = new Page(NULL);
$VALID = new Validator();
$PAGES->title = $_POST['title'];
$PAGES->description = $_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 = 504;
$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 = 504;
$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 = $_POST['title'];
$PAGES->description = $_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.php 0000644 00000007122 15076433537 0006556 0 ustar 00 <?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 = 800;
$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 = 800;
$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.php 0000644 00000011056 15076433537 0010574 0 ustar 00 <?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 = $_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 = 800;
$handle->image_y = 436;
$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 = 800;
$handle->image_y = 436;
$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 = $_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.php 0000644 00000002272 15076433537 0007660 0 ustar 00 <?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.php 0000644 00000005605 15076433537 0006545 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$BANNER = new Banner(NULL);
$VALID = new Validator();
$BANNER->title = $_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 = $_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.php 0000644 00000000330 15076433537 0006654 0 ustar 00 <?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.php 0000644 00000012013 15076433537 0007651 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$TOUR_PACKAGE = new TourPackage(NULL);
$VALID = new Validator();
$TOUR_PACKAGE->tourtype = $_POST['tourtype'];
$TOUR_PACKAGE->title = $_POST['title'];
$TOUR_PACKAGE->price = $_POST['price'];
$TOUR_PACKAGE->short_description = $_POST['short_description'];
$TOUR_PACKAGE->description = $_POST['description'];
$dir_dest = '../../upload/tour-package/';
$dir_dest_thumb = '../../upload/tour-package/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 = 570;
$handle->image_y = 347;
$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 = 178;
$handle->image_y = 100;
$handle->Process($dir_dest_thumb);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
}
$TOUR_PACKAGE->image_name = $imgName;
$VALID->check($TOUR_PACKAGE, [
]);
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/';
$dir_dest_thumb = '../../upload/tour-package/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 = 570;
$handle->image_y = 347;
$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 = 178;
$handle->image_y = 100;
$handle->Process($dir_dest_thumb);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$img = $handle->file_dst_name;
}
}
$TOUR_PACKAGE = new TourPackage($_POST['id']);
$TOUR_PACKAGE->tourtype = $_POST['tourtype'];
$TOUR_PACKAGE->image_name = $_POST['oldImageName'];
$TOUR_PACKAGE->title = $_POST['title'];
$TOUR_PACKAGE->price = $_POST['price'];
$TOUR_PACKAGE->short_description = $_POST['short_description'];
$TOUR_PACKAGE->description = $_POST['description'];
$VALID = new Validator();
$VALID->check($TOUR_PACKAGE, [
]);
if ($VALID->passed()) {
$TOUR_PACKAGE->update();
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.php 0000644 00000010042 15076433537 0011137 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$TOUR_PACKAGE = new TourPackage(NULL);
$VALID = new Validator();
$TOUR_PACKAGE->title = $_POST['title'];
$TOUR_PACKAGE->price = $_POST['price'];
$TOUR_PACKAGE->short_description = $_POST['short_description'];
$TOUR_PACKAGE->description = $_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 = $_POST['title'];
$TOUR_PACKAGE->price = $_POST['price'];
$TOUR_PACKAGE->short_description = $_POST['short_description'];
$TOUR_PACKAGE->description = $_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.php 0000644 00000007173 15076433537 0006744 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$COMMENT = new Comments(NULL);
$VALID = new Validator();
$COMMENT->name = $_POST['name'];
$COMMENT->title = $_POST['title'];
$COMMENT->comment = $_POST['comment'];
$COMMENT->is_active = $_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 = 122;
$handle->image_y = 122;
$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 = 122;
$handle->image_y = 122;
$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 = $_POST['name'];
$COMMENT->title = $_POST['title'];
$COMMENT->comment = $_POST['comment'];
$COMMENT->is_active = $_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.php 0000644 00000011043 15076433537 0010254 0 ustar 00 <?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.php 0000644 00000007513 15076433537 0006254 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$ROOM = new Room(NULL);
$VALID = new Validator();
$ROOM->title = $_POST['title'];
$ROOM->short_description = $_POST['short_description'];
$ROOM->description = $_POST['description'];
$ROOM->no_of_rooms = $_POST['no_of_rooms'];
$ROOM->price = $_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 = $_POST['title'];
$ROOM->short_description = $_POST['short_description'];
$ROOM->description = $_POST['description'];
$ROOM->no_of_rooms = $_POST['no_of_rooms'];
$ROOM->price = $_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.php 0000644 00000007501 15076433537 0006376 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$OFFER = new Offer(NULL);
$VALID = new Validator();
$OFFER->title = $_POST['title'];
$OFFER->short_description = $_POST['short_description'];
$OFFER->description = $_POST['description'];
$OFFER->price = $_POST['price'];
$OFFER->discount = $_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 = $_POST['title'];
$OFFER->short_description = $_POST['short_description'];
$OFFER->description = $_POST['description'];
$OFFER->price = $_POST['price'];
$OFFER->discount = $_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.php 0000644 00000007103 15076433537 0007732 0 ustar 00 <?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 = 900;
$handle->image_y = 500;
$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 = 900;
$handle->image_y = 500;
$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']);
}
} tour-date-photo.php 0000644 00000011334 15076433537 0010327 0 ustar 00 <?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 = $_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.php 0000644 00000011166 15076433537 0007527 0 ustar 00 <?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 = $_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.php 0000644 00000004357 15076433537 0010265 0 ustar 00 <?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.php 0000644 00000004053 15076631037 0007467 0 ustar 00 <?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.php 0000644 00000001166 15076631037 0011533 0 ustar 00 <?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.php 0000644 00000000456 15076631037 0007165 0 ustar 00 <?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.php 0000644 00000004535 15076631037 0011373 0 ustar 00 <?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.php 0000644 00000010545 15076631037 0007675 0 ustar 00 <?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.php 0000644 00000005107 15076631037 0010725 0 ustar 00 <?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_log 0000644 00000644603 15076631037 0007431 0 ustar 00 [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.php 0000644 00000001555 15076631040 0007467 0 ustar 00 <?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.php 0000644 00000000676 15076631040 0011300 0 ustar 00 <?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.php 0000644 00000006257 15076631040 0007327 0 ustar 00 <?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.php 0000644 00000007224 15076631040 0012275 0 ustar 00 <?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.php 0000644 00000011650 15076631040 0010307 0 ustar 00 <?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.php 0000644 00000005120 15076631040 0011162 0 ustar 00 <?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.php 0000644 00000003573 15076705325 0012252 0 ustar 00 <?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.js 0000644 00000005222 15076705325 0012070 0 ustar 00 $(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.php 0000644 00000002771 15076743405 0007664 0 ustar 00 <?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();
}
}
tour-type.php 0000644 00000011777 15121167710 0007243 0 ustar 00 <?php
include_once(dirname(__FILE__) . '/../../class/include.php');
include_once(dirname(__FILE__) . '/../auth.php');
if (isset($_POST['create'])) {
$TOUR_TYPE = new TourType(NULL);
$VALID = new Validator();
$TOUR_TYPE->name = filter_input(INPUT_POST, 'title');
$TOUR_TYPE->short_description = (INPUT_POST, 'short_description');
$TOUR_TYPE->description = (INPUT_POST, 'description');
$dir_dest = '../../upload/tour-type/';
$dir_dest_thumb = '../../upload/tour-type/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 = 700;
$handle->image_y = 800;
$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 = 400;
$handle->image_y = 225;
$handle->Process($dir_dest_thumb);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
}
$TOUR_TYPE->image_name = $imgName;
$VALID->check($TOUR_TYPE, [
'name' => ['required' => TRUE],
'image_name' => ['required' => TRUE]
]);
if ($VALID->passed()) {
$TOUR_TYPE->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['edit-tour-type'])) {
$dir_dest = '../../upload/tour-type/';
$dir_dest_thumb = '../../upload/tour-type/thumb';
$handle = new Upload($_FILES['picture_name']);
$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 = 700;
$handle->image_y = 800;
$handle->Process($dir_dest);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
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 = 400;
$handle->image_y = 225;
$handle->Process($dir_dest_thumb);
}
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
}
$TOUR_TYPE = new TourType($_POST['id']);
$TOUR_TYPE->id = $_POST['id'];
$TOUR_TYPE->name = $_POST['name'];
$TOUR_TYPE->image_name = $_POST['oldImageName'];
$TOUR_TYPE->short_description = filter_input(INPUT_POST, 'short_description');
$TOUR_TYPE->description = filter_input(INPUT_POST, 'description');
$VALID = new Validator();
$VALID->check($TOUR_TYPE, [
'name' => ['required' => TRUE],
'image_name' => ['required' => TRUE],
]);
if ($VALID->passed()) {
$TOUR_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;
$TOUR_SUB = TourType::arrange($key, $img);
header('Location: ' . $_SERVER['HTTP_REFERER']);
}
} |