Código:
<?
$direccion = 'localhost';
$usuario = 'root';
$password = 'root';
$db=mysql_connect($direccion,$usuario,$password);
?>
<?
mysql_select_db("basededatos",$db);
?>
<?
account::isNotLoggedIn();
$acct_id = account::getAccountID($_SESSION['cw_user']
UPDATE account_data SET id='.$acct_id', dp='100' WHERE id=".$acct_id";
mysql_query($sql,$db);
?>


