If you are not registered or logged in, you may still use these forums but with limited features. Show recent topics
  [Search] Search   [Hottest Topics] Hottest Topics   [Members]  Member Listing   [FAQ]  FAQ 
[Register] Register / 
[Login] Login 
Put No. of guestbook entrys on index  XML
Forum Index » Advanced Guestbook Forum
Author Message
Sander
Beginner

Joined: 23/08/2005 12:25:15
Messages: 9
Offline

Hey again,
i want to put the number of guestbook entrys in the index of my website, on the front page, how can i do that!
Carbonize
Master
[Avatar]

Joined: 12/06/2003 19:26:08
Messages: 4292
Location: Bristol, UK
Offline

Put this in a file called total.php then put the file into the guestbook folder
  1. <?php  
  2. include_once "./admin/config.inc.php";  
  3. include_once "./lib/mysql.class.php";  
  4.   
  5. ini_set ('display_errors', 1);  
  6. error_reporting (E_ALL & ~E_NOTICE);  
  7.   
  8. if(ereg(":",$GB_DB['host']))   
  9. {  
  10.    list($host,$port) = explode(":",$GB_DB['host']);  
  11.    $port = $port;  
  12. }   
  13. else   
  14. {  
  15.    $port = 3306;  
  16. }  
  17.   
  18. if ($dbc = @mysql_connect ($GB_DB['host'].":".$port, $GB_DB['user'], $GB_DB['pass']))  
  19. {  
  20.    if (!@mysql_select_db ($GB_DB['dbName'], $dbc))  
  21.    {  
  22.       die ('<p>Could not select the database because: <b>'.mysql_error().'</b></p>');  
  23.    }  
  24. }   
  25. else   
  26. {  
  27.    die ('<p>Could not connect to MySQL because: <b>'.mysql_error().'</b></p>');  
  28. }  
  29. $query = "select count(*) as total from ".$GB_TBL['data'];  
  30. $thetotal = mysql_query($query);  
  31. $row = mysql_fetch_array($thetotal);  
  32. $total = $row['total'];  
  33. echo $total;  
  34. mysql_close($dbc);  
  35. ?>  


then include that file where you want the total to appear using
  1. <?php include("path/to/guestbook/total.php"); ?>  
changing the path/to part to reflect your servers directory structure.

Just remember that this will query your database everytime somebody views the page it's included on and if you are on a host that limits MySQL queris you could be in trouble.

Carbonize
I am not the maker of the Advanced Guestbook

get Lazarus
[Email] [WWW] [Yahoo!] aim icon [MSN] [ICQ]
 
Forum Index » Advanced Guestbook Forum
Go to:   
Based on the open source JForum