H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
aussieeducation
/
sitecms
/
process-update
/
Nama File / Folder
Size
Action
update-attribute-process.php
0.958KB
Hapus
Edit
Rename
update-page.php
3.575KB
Hapus
Edit
Rename
update-photo-status.php
0.705KB
Hapus
Edit
Rename
update-video.php
0.676KB
Hapus
Edit
Rename
<?php ob_start(); ?> <?php include("../includes/session.php"); ?> <?php include("../includes/login-verify.php"); ?> <?php include("../includes/printmsg.php"); ?> <?php include("../includes/extra-vars.php"); ?> <?php include("../includes/connection.php"); ?> <?php $attribute_id = $_POST['attribute_id']; $attribute_name = $_POST['attribute_name']; $attribute_value = $_POST['attribute_value']; $for_franchise = $_POST['for_franchise']; $attribute_slug = $_POST['attribute_slug']; $status = $_POST['status']; $sql = ("update attributes set attribute_value = '$attribute_value', for_franchise = '$for_franchise', attribute_slug = '$attribute_slug', status = '$status', modified = '$today' where id = '$attribute_id'"); $result = mysql_query($sql); $_SESSION['msg'] = '<div class="alert alert-success text-center"><strong>Attribute info. has been updated successfully.</strong></div>'; header("location: ../manage-attributes?attribute_name=$attribute_name"); ?> <?php ob_flush(); ?>