im using this code on update.php, i have an update.htm with a form that throws 'street' and 'subd'. i used post as a form method. it parses ok but it does not update my database.
<?php
$db=mysql_connect('localhost, 'usr', 'pwd');
mysql_select_db ('dbname', $db);
mysql_query ("UPDATE table SET
street = $street, subd = $subd
where user_id = $user_id");
?>
what else is missing? anyone please? thanks.
manny