gthell I installed it on VB3.0 .. got the same error ...
Replace:
PHP Code:
// ###################### Start do order #####################
if ($HTTP_POST_VARS['action']=="doorder") {
while (list($key,$val)=each <http://www.php.net/each>($order)) {
$DB_site->query("UPDATE smilie SET showid='$val' WHERE smilieid='$key'");
}
echo "<p>Order updated!</p>";
$action="modify";
}
With:
PHP Code:
// ###################### Start do order #####################
if ($HTTP_POST_VARS['action']=="doorder") {
while (list($key,$val)=each ($order)) {
$DB_site->query("UPDATE smilie SET showid='$val' WHERE smilieid='$key'");
}
echo "<p>Order updated!</p>";
$action="modify";
}
I also got an error on line 262, but this was due to spaces ...
Try removing all spaces between lines !