/**
* Code Sample 1 - Update all existing invoices to have usernames
**/
// Get a list of users
$query = "SELECT id, name FROM user ORDER BY id asc";
$result = mysql_query($query);
// Loop through the users
while ($row = mysql_fetch_assoc($result))
{
// Update any invoices for this user to include the name
$update = "UPDATE invoice SET user_name = ".$row['name']." WHERE user_id = ".$row['id'].";
mysql_query($update);
}
/**
* Code Sample 2
**/
// An ID of the user who owns the invoices
$user_id = 1001;
// Some invoice data (specific to your system)
$somedata = "3 Pairs of Shoes";
$query = "INSERT INTO invoices (user_id, user_name, data1) VALUES (".$user_id.",
(SELECT name FROM users WHERE id = ".$user_id.")
'".$somedata."')";
|