Page 1 of 1

Welcome to phpBB3

PostPosted: Wed Apr 21, 2010 4:27 pm
by admin
This is an example post in your phpBB3 installation. Everything seems to be working. You may delete this post if you like and continue to set up your board. During the installation process your first category and your first forum are assigned an appropriate set of permissions for the predefined usergroups administrators, bots, global moderators, guests, registered users and registered COPPA users. If you also choose to delete your first category and your first forum, do not forget to assign permissions for all these usergroups for all new categories and forums you create. It is recommended to rename your first category and your first forum and copy permissions from these while creating new categories and forums. Have fun!

Re: Welcome to phpBB3 - Code Test

PostPosted: Mon Feb 10, 2014 5:33 pm
by admin
function resetVehicleInventory()
{
include("config.php");
$sql = "truncate table vehicle_inventory";
$sql_result = mysql_query($sql, $connection ) or die ('request "Could not execute SQL query" '.$sql);
$sql = "truncate table vehicle_inventory_optional_fields";
$sql_result = mysql_query($sql, $connection ) or die ('request "Could not execute SQL query" '.$sql);
mysql_close($connection);
}