Hello!
At my little nice forum, which I have modded quite a bit,
I use this little free script from FREE PHP Message Board
Works great! And no fuss with MySQL.
Stores topics and reply in HTML pages. HTML is used as Database.
Which can be linked to, deleted, or edited very easy. Using Notepad editor.
Makes this board extremly FAST, as every page is ready for ECHO.
Try out! My bulletin board: http://213.100.118.115/bb/mboard.php
My modded 'mboard.php' starts like this. CODE:
<?php
/*** PHP message board (MBoard) Version 1.21 (2005-04-19) http://www.phpjunkyard.com ***/
error_reporting(3); // Only error and warning
require_once('settings.php');
printTopHTML();
// set diffrent newline for Windows or Mac or Linux system
if($settings['system'] == 2) {$settings['newline']="\r\n";}
elseif($settings['system'] == 3) {$settings['newline']="\r";}
else {$settings['newline']="\n";}
if(!(empty($_REQUEST['a']))){
$a=$_REQUEST['a'];
if ($a=="delete") {confirmDelete("$_REQUEST[num]","$_REQUEST[up]");}
if ($a=="confirmdelete") {doDelete("$_REQUEST[pass]","$_REQUEST[num]","$_REQUEST[up]");}
$name=htmlspecialchars("$_REQUEST[name]");
if(empty($name)) {problem("Please enter your name!");}
$message=htmlspecialchars("$_REQUEST[message]");
if(empty($message)) {problem("Please write a message");}
if(!empty($_REQUEST['email'])){
$email=htmlspecialchars("$_REQUEST[email]");
if(!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/",$email))
{problem("Please enter a valid e-mail address!");}
$char = array('.','@');
$repl = array(".","@");
$email=str_replace($char,$repl,$email);
}
?>
Maybe you could try somthing like this BB.
Does not need to be complicated as them phpBB or vBulletin Board
/halojoy
small and simple php scripts, working perfect and fast !!!
🙂