У меня такая проблема ввел код и почему то выделяет строку крассным не знаю что делать перебробовал все варианты помогите пожалуйста буду очень благодарен.
Выделяет красным:
if ($row["image"]!= "" && file_exists("./Goods/".$row["image"]));
Вот сам код:
<?php
$result = mysql_query("SELECT * FROM table_products",$link);
if (mysql_num_rows($result) > 0)
{
$row = mysql_fetch_array($result);
do
(
if ($row["image"]!= "" && file_exists("./Goods/".$row["image"]));
$img_path = './Goods/'.$row["image"];
$max_width = 200;
$max_height = 84;
($width,$height) = getimagesize($img_path);
$ratioh = $max_height/$height;
$ratiow = $max_width/$width;
$ratio = min($ratioh,$ratiow);
$width = intval($ratio*$width);
$height = intval($ratio*$height);
)else
(
$img_path = "/images/no-image.png";
$width = 110;
$height = 200;
)
echo '
<li>
<div class="block-images-grid" >
<img src="'.$img_path.'" width="'.$width.'" height="'.$height.'" />
</div>
<p class="style-title-grid" ><a href="" > '.$row["title"].'</a></p>
<ul class="reviews-and-counts-grid">
<li><img src="/images/eye-icon.png" /></li>
<li><img src="/images/comment-icon.png" /></li>
</ul>
<a class="add-cart-style-grid" ></a>
<p class="style-price-grid" ><strong></strong> евро </p>
<div class="mini-features" >
'.$row["mini_features"].'
</div>
</li>
';
}
while ($row= mysql_fetch_array($result));
}
?>