Chi Kien Uong
Geranienstraße 30
71034 Böblingen
Deutschland / Germany
|
If you are not registered or logged in, you may still use these forums but with limited features.
Show recent topics
|
|
|
Author |
Message |
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 14/09/2005 18:38:55
|
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!
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 14/09/2005 19:19:06
|
Carbonize
Master
![[Avatar]](/forum/images/avatar/96871336492d73e733f55.jpg)
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
- <?php
- include_once "./admin/config.inc.php";
- include_once "./lib/mysql.class.php";
-
- ini_set ('display_errors', 1);
- error_reporting (E_ALL & ~E_NOTICE);
-
- if(ereg(":",$GB_DB['host']))
- {
- list($host,$port) = explode(":",$GB_DB['host']);
- $port = $port;
- }
- else
- {
- $port = 3306;
- }
-
- if ($dbc = @mysql_connect ($GB_DB['host'].":".$port, $GB_DB['user'], $GB_DB['pass']))
- {
- if (!@mysql_select_db ($GB_DB['dbName'], $dbc))
- {
- die ('<p>Could not select the database because: <b>'.mysql_error().'</b></p>');
- }
- }
- else
- {
- die ('<p>Could not connect to MySQL because: <b>'.mysql_error().'</b></p>');
- }
- $query = "select count(*) as total from ".$GB_TBL['data'];
- $thetotal = mysql_query($query);
- $row = mysql_fetch_array($thetotal);
- $total = $row['total'];
- echo $total;
- mysql_close($dbc);
- ?>
then include that file where you want the total to appear using- <?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 |
|
|
|
|
|
Based on the open source JForum
|