[쇼핑몰] 상품이미지에 마우스 오버시 나타나는 alt를 상품이름으로 바꾸기
페이지 정보
본문
lib/shop.lib.php
**************
list($it_id, $simg) = explode("_", $img);
$sql = " select it_name from $g4[yc4_item_table] where it_id = '$it_id' ";
$row = sql_fetch($sql);
$full_img = "$g4[path]/data/item/$img";
if (file_exists($full_img) && $img)
{
if (!$width)
{
$size = getimagesize($full_img);
$width = $size[0];
$height = $size[1];
}
$str = "<img id='$img' src='$g4[path]/data/item/$img' width='$width' height='$height' border='0' alt='$row[it_name]'>";
}
**************
list($it_id, $simg) = explode("_", $img);
$sql = " select it_name from $g4[yc4_item_table] where it_id = '$it_id' ";
$row = sql_fetch($sql);
$full_img = "$g4[path]/data/item/$img";
if (file_exists($full_img) && $img)
{
if (!$width)
{
$size = getimagesize($full_img);
$width = $size[0];
$height = $size[1];
}
$str = "<img id='$img' src='$g4[path]/data/item/$img' width='$width' height='$height' border='0' alt='$row[it_name]'>";
}
추천0
댓글목록
등록된 댓글이 없습니다.