I am using php and mysql to read a row from a table, store it as an array
called $user_data, then manipulate the array.

$id = 123;
$result = mysql_query(" SELECT * FROM users WHERE id='$id' ");
$user_data = mysql_fetch_assoc($result);
$user_data = ProcessData($user_data);

Now I want to save all the changes in the $user_data array back to the
table.  What is the most efficient way to do this?

-David McWilliams

________________________________________________________________
Sign Up for Juno Platinum Internet Access Today
Only $9.95 per month!
Visit www.juno.com

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to