File "size_image-20260219070958.php"
Full Path: /home/magicrsz/public_html/actions/size_image-20260219070958.php
File size: 356 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
include "../admin/database.php" ;
$user_id=NULL;
$user_id=session_id();
$id=$_POST['id'];
$query = "SELECT * from sizes where id='$id'";
$size = db::getRecord($query);
if($size){
?>
<img src = "<?php echo "admin/product/images/".$size['image_name']; ?>" alt = "shoe image" style="height:350px">
<?php
}
?>