I was wondering how everyone else updates their databases using php and mysql and was wondering if there are any other quicker to update as apposed to doing the following.
// make a connection to the database
include "dbconn.php";
mysql_connect($servername,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query = "UPDATE test_dbase SET name='$ud_name', email_address='$ud_email_address' WHERE id='$ud_id'";
mysql_query($query);
mysql_close();