Why is this code note updating the database????
<?php
include '../connection.php';
$today = new DateTime('2014-7-14 20:10:10');
$appt = new DateTime('2014-8-15 20:10:10');
$days_until_appt = $appt->diff($today)->days;
if ($days_until_appt>=30)
{
$sql = "SELECT username FROM users WHERE position = 'Tenant'";
$result = mysql_query($sql) or die(mysql_error());
echo '<table align="center" border="1" cellpadding="0">';
echo '<tr align="center"><th> Payee'.'</th><th> Credit'.'</tr>';
while($row = mysql_fetch_array($result))
{
echo '<tr><th>'.$row['username'].'</th>'.'<br/>';
$rw = $row['username'];
$sq = "SELECT * FROM finance WHERE payee = '$rw'";
$res = mysql_query($sq) or die(mysql_error());
$rew = mysql_fetch_array($res);
$r = $rew['credit'] += 3000 ;
$s="UPDATE finance SET credit ='" . $r. "' WHERE payee = 'rw'";
mysql_error();
echo '<th>'.$r.'</th></tr>'.'<br/>';
}
echo'</table>';
}
?>