Файловый менеджер - Редактировать - /home/umudio/public_html/repo/articledetail.php.tar
Назад
home/umudio/public_html/OLD/articledetail.php 0000644 00000003167 14773626536 0015267 0 ustar 00 <?php include("Connecter/dataconn.php"); ?> <?php if (isset($_GET['tab'])) { $id=$_GET['tab']; $query_dio = "SELECT * FROM articles where sn=$id"; $dio = mysql_query($query_dio, $csn) or die(mysql_error()); $row_dio = mysql_fetch_assoc($dio); $totalRows_dio = mysql_num_rows($dio); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php include("head.php"); ?> </head> <body> <?php include("top.php"); ?> <?php include("titlebar.php"); ?> <?php include("mast.php"); ?> <?php include("navbar.php"); ?> <?php include("contenttop.php"); ?> <?php include("sidebar.php"); ?> <?php include("mainbartop.php"); ?> <!--Content Goes here--> <div> </div> <div class="headingbiggest">Articles</div><hr /> <div> </div> <div class="post"> <div class="headingbigger"><?php echo $row_dio['titler']; ?></div> <?php if($row_dio['who']!=""){ ?> <div align="right" style="font-weight:bold; font-size:12px"><i>By <?php echo $row_dio['who']; ?></i></div> <div> </div> <?php } ?> <?php echo $row_dio['contenter']; ?> <div> </div> </div><div class="post-bot"></div> <p> </p><hr /> <a href="articles.php">See Other Articles »</a> <p> </p> <!--Content Ends here--> <?php include("mainbarbottom.php"); ?> <?php include("contentbottom.php"); ?> <?php include("footbar.php"); ?> <?php include("bottom.php"); ?> </body> </html> <?php } else { include("articles.php"); } ?>