i have 2 tables.. one called image and one called member.
when someone uploads an picture to my site, it will add the correct information to into the image table, but i also want to add the date to the members table for last updated..
just havin a problem doing 2 queries..
heres what i got now..
$date = now();
$sql = "INSERT INTO image (image_name,image_original,image_ext,image_size,image_width,image_height,image_caption,image_member_id,image_status,created_on,updated_on)
VALUES
('$base','$original','$ext','$size','$width','$height','$caption[$i]','$session_member_id','A','$date','$date')";
$result = mysql_query($sql);
}