<?php
session_start();
/*
asaancart - easy shopping cart solution
---------------------------------------
Copyright 2009 Nasir Ahmad Khan
Email: hide@address.com
This file is part of asaancart - open source easy shopping cart solution.
asaancart is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
asaancart is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with asaancart. If not, see <http://www.gnu.org/licenses/>.
*/
include("../config/config.php");
include("includes/chk_login_status_inc.php");
$smarty->assign('title','Manage Featured Products');
$selected_cross_product_id = $_POST['selected_cross_product_id'];
if($_POST['btn_create']=="Set as Featured")
{
///////insert cross selling products if any
if($selected_cross_product_id!=""){
$arr_cross_pro_id = explode(",",$selected_cross_product_id);
foreach ($selected_cross_product_id as $temp_id) {
$sql_cross = "UPDATE products SET is_featured='yes' WHERE product_id='$temp_id'";
$results_cross = mysql_query($sql_cross);
}//end foreach
}
///////
$smarty->assign('msg','Done: Saved Successfully');
}
elseif($_POST['btn_create']=="Undo Featured")
{
///////insert cross selling products if any
if($selected_cross_product_id!=""){
$arr_cross_pro_id = explode(",",$selected_cross_product_id);
foreach ($selected_cross_product_id as $temp_id) {
$sql_cross = "UPDATE products SET is_featured='no' WHERE product_id='$temp_id'";
$results_cross = mysql_query($sql_cross);
}//end foreach
}
///////
$smarty->assign('msg','Done: Saved Successfully');
}
/*/ delete
if($_GET['mode']=="delete")
{
$sql = "DELETE FROM products WHERE product_id=".$product_id;
$results = mysql_query($sql);
$smarty->assign('msg','Done: Deleted Successfully');
}
//end delete
/manage
$sql = "SELECT * FROM product ORDER BY product_name";
$results = mysql_query($sql);
$total_pro = mysql_num_rows($results);
$smarty->assign('total_pro', $total_pro);
while($row = mysql_fetch_assoc($results) )
{
$pro_list[] = $row;
}
$smarty->assign('pro_list', $pro_list);
//end manage*/
/////get all products
//manage
$sql = "SELECT * FROM products ORDER BY product_name";
$results = mysql_query($sql);
$total_products = mysql_num_rows($results);
$smarty->assign('total_products', $total_products);
while($row = mysql_fetch_assoc($results) )
{
$all_product_list[] = $row;
//get pro image
$sql_img = "SELECT * FROM product_images WHERE product_id='".$row['product_id']."'";
$results_img = mysql_query($sql_img);
$img_cnt = 0;
while($row_img = mysql_fetch_assoc($results_img) )
{
if($img_cnt<1){
$product_images[] = $row_img;
$img_cnt++;
}
}
// end pro img
}
$smarty->assign('all_product_list', $all_product_list);
//end manage
///end pro get
$smarty->display('manage_featured_products.tpl');
?>