Курсовая работа: Створення веб-сайту для електронного магазину
<div class="overview-table-inner">
<div align="center"> <img src="<?php echo $myrow1['img']?>" width="175px" height="175px" alt="an image" class="image" /></div>
<div><h4><em><b>Ціна: <?php echo $myrow1['price'];?></b></em></h4> </div>
<div class="tovary"> <label><h4><em><u>Опис:</u></em></h4> </label> <?php echo $myrow1['description'];?>... </div>
<?php if ($myrow1['available'] == 1) {echo "<em><u>Наявність:</u></em> <img src='images/tovary/available.gif' width='15px' height='15px' class='image' />";} else {echo "<em><u>Наявність:</u></em> <img src='images/tovary/unavailable.gif' width='15px' height='15px' class='image' />";}
?><div align="right"> <a class="art-button" href="details.php?id=<?php echo $myrow1['id'];?>">Детальніше...</a> </div></div></div></div>
Details.php– сторінка з детальним описом товару
<div class="art-post-inner art-article">
<?php if (isset($_GET['id'])) {$id = $_GET['id'];} else {echo "Помилка";}
$result= mysql_query("SELECT * FROM products WHERE id='$id'") or die (mysql_error());
$myrow = mysql_fetch_array($result); ?>
<div class="art-postmetadataheader">
<h2 class="art-postheader">
<img src="images/postheadericon.png" width="29" height="29" alt="postheadericon" />
<?php echo $myrow['title'];?></h2></div><br>
<div class="art-postcontent">
<!-- article-content -->
<div class="cleared"></div>
<div class="table-postmetadataheader">
<h2 class="table-header"></h2></div>
<div class="art-content-layout overview-table">
<div class="art-content-layout-row">
<div class="art-layout-cell" >
<div class="overview-table-inner">
<div align="center"> <img src="<?php echo $myrow['img'];?>" width="175px" height="175px" alt="an image" class="image" /></div>
<div><h4><em><b>Ціна:</b></em><?php echo $myrow['price'];?></h4> </div>
<div class="tovary"> <label><h4><em><u>Опис:</u></em></h4> </label> <?php echo $myrow['fdescription'];?> </div>
<?php if ($myrow1['available'] == 1) {echo "<em><u>Наявність:</u></em> <img src='images/tovary/available.gif' width='15px' height='15px' class='image' alt='В наявності'/>";} else {echo "<em><u>Наявність:</u></em> <img src='images/tovary/unavailable.gif' width='15px' height='15px' class='image' alt='Немає в наявності' />";}?></div></div></div><!-- end row --></div>