$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Janusz Piwowarski (jpiw_at_[hidden])
Date: 2005-11-10 03:12:51
Janusz Piwowarski wrote:
> $ext = substring($QUERY_STRING, strrpos($QUERY_STRING, ".") + 1);
This line should be:
$ext = substr($QUERY_STRING, strrpos($QUERY_STRING, ".") + 1);
-- Regards, Janusz