<?php
/**
* loading user settings (hitlist settings) from database
* @author Gabriele Droege, DNA Bank Network <contact@dnabank-network.org>
* @version 2.0
* @package Load
* @copyright Copyright Š 2011 DNA Bank Network http://www.dnabank-network.org<br>The contents of this file are subject to the Mozilla Public License Version 1.1
* @filesource
* @license http://www.mozilla.org/MPL/ MPL
*/

$sql = "SELECT * FROM usersettings WHERE FK_User = '$ID_LogUser'";
$result = mysql_query($sql);

    while($row = mysql_fetch_object($result))
    { $RecordsPerPage = $row->RecordsPerPage;
      $Sorting = $row->Sorting;
      $RecordsPerPageSP = $row->RecordsPerPageSP;
      $SortingSP = $row->SortingSP; }
    
?>