• 28-12-2009, 11:42:52
    #1
    Reveloper
    mrb. tekrardan

    video sitemde kategorileri tek tek göstermesini istiyorum

    scategory.php
    <?php
    
    $querycat=mysql_query("Select * from categories order by category");
    echo mysql_error();
       while($rowpcat=mysql_fetch_array($querycat)){
       $adr=str_replace(" ","-",$rowpcat['category']);
         echo  "<div class='clink'><a href='".$site.$path."c/$adr/1/'>$rowpcat[category]</a></div>";
       }
    ?>
    index.php
    <div id='categories'>
           <h4>Video Kategorileri</h4>
     <?php
       include ("scategory.php");
     ?>
    </div>
    benim istediğim

    	<tr>
    		<td width="15px"><img src="images/ok.png" alt="" /></td>
    		<td width="180px"><a href="#">Amatör</a></td>
    		<td width="10px">80</td>
    	</tr>
    	<tr>
    		<td><img src="images/ok.png" alt="" /></td>
    		<td><a href="#">Araba</a></td>
    		<td>40</td>
    	</tr>
    	<tr>
    		<td><img src="images/ok.png" alt="" /></td>
    		<td><a href="#">Çocuklar</a></td>
    		<td>54</td>
    	</tr>
  • 28-12-2009, 12:44:28
    #2
    Eposta Aktivasyonu Gerekmekte
    <?php
    $querycat=mysql_query("Select * from categories order by category");
    echo mysql_error();
       while($rowpcat=mysql_fetch_array($querycat)){
       $adr=str_replace(" ","-",$rowpcat['category']);?>
        <tr>
            <td width="15px"><img src="images/ok.png" alt="" /></td>
            <td width="180px"><?php echo '<a href="' . $site . $path . 'c/' . $adr . '/1/">' . $rowpcat["category"] . '</a>';?></td>
            <td width="10px">80</td>
        </tr>
    <?php
    }
    ?>