Guest User

Untitled

a guest
Feb 18th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $title2="";
  3. $content="";
  4. $query="";
  5.  
  6. $artid=$_GET['artid'];
  7.  
  8. if(strLen($artid)>0){
  9. $query="select title,content from tbl_articles where id='$artid'";
  10. }else{
  11. $query="select title,content from tbl_articles where is_home='1'";
  12. }
  13.  
  14. $q=mysql_query($query);
  15. while($r=mysql_fetch_array($q)){
  16. $title2=$r['title'];
  17. $content=$r['content'];
  18. }
  19. ?>
  20. <!-- title -->
  21. <title><?php echo $title." | ".$title2; ?></title>
  22. <!-- content -->
  23. <?php echo $content; ?>
Add Comment
Please, Sign In to add comment