Though if everyone wants this, I'll just don't add my picture.

Moderators:Best First, spiderfrommars, IronHide
Normalisation? Cross-referencing? Are you completely mad?Denyer wrote:Yeah, but people also want to feel that they could change things if they wanted...
Adding a field also requires adding that field to any and all pieces of code that create or modify records in the user table. That's why the custom rank hack is so needlessly complicated.
However, the tables could be crosslinked—have a single-field table with the field "board_id" in it. Name the files according to "board_id" and stick them together in a directory. Then query the forum tables for any additional information required.
Code: Select all
if(!function_exists('scandir'))
{
function scandir($directory, $sorting_order=0)
{
// php.net/scandir (PHP5)
if(!is_dir($directory)) return FALSE;
$files = array();
$fh = opendir($directory);
while (FALSE !== ($filename = readdir($fh)))
{
$files[] = $filename;
}
closedir($fh);
if($sorting_order==1) rsort($files);
else sort($files);
return $files;
}
}
$files = scandir($path,1);
foreach ($files as $log) {
// display stuff here
}
That thing is so history.spiderfrommars wrote:Is it just me or is Sadie's picture missing?
I hear it's lovely this time of year.Impactor returns 2.0 wrote:*buys plane ticket to feck off*