Jump to content
php.lv forumi

Kategorijas.


forSilence

Recommended Posts

Taisu video skriptam kategorijas. Visu esu sataisījis, ja piem. nav kādas kategorijas, tad uzraksta "Nav tādas kategorijas", bet vajag panāk tā, lai ja kategorija ir tukša uzraksta "kategorija tukša". Izmeiināju ar if'u un nekas nesanāca meigināju.

if(empty($rows)){
echo 'kategorija tukša';
}

Bet nesanāca meigināju.

if($rows == ''){
echo 'Kategorija tukša';
}

 

Bet arī nesanāca vēršos pie jums pēc palīdzības.

 

Rekur ir kods:

 

<?php
if(isset($_GET['kat'])){
if($_GET['kat'] > 6){
echo 'Nav šadas kategorijas!';
}
$kat = quote_smart($video['kat']);
$sql = mysql_query("SELECT * FROM video WHERE kat = {$_GET['kat']}");
while($row = mysql_fetch_array($sql)){
?>
<div class="video-bg">
<img src="http://i2.ytimg.com/vi/<?=$row['video_id']?>/default.jpg" height="90" width="132" style="margin-left:3px; margin-top:4px; padding:2px; border:1px solid #cccccc; background:white;" /><br />
<b><a href="?p=user&id=<?=$row['user_id']?>" style="color:#0d2474; padding-left:4px;"><?=$row['user']?></a></b><br />
<div class="video-name"><b><a href="?p=video&id=<?=$row['id']?>"><?=$row['video']?></a></b></div>
<ul style="margin-left:-10px; margin-top:17px;">
<li >Komentari: <?=$row['coment_count']?></li>
<li>Skatijumi: <?=$row['views']?></li>
</ul>
</div>
<?
}
}
else{
echo 'Nav izvēlēta kategorija!';
}
?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...