I'm wondering how I would go about in Wordpress / PHP to update the rows associated with the $post_id that are mirrored from a meta box boxes and stored on a separate table called 'markers' when pressing save/update in a wordpress post.
This is what I am currently using to store the information into the table, a couple issues I am having is duplicated information, empty rows, and anytime information is changed a new row is created. Any help would be awesome.
add_action('save_post', 'save_markers');
function save_markers ($post_id) {
if (defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE)
return;
if ('locations' != $_POST['post_type'])
return;
if (!current_user_can( 'edit_post', $post_id ))
return;
global $wpdb;
$name = get_post_meta($post_id, 'name', true);
$type = get_post_meta($post_id, 'type', true);
$neighborhood = get_post_meta($post_id, 'neighborhood', true);
$address = get_post_meta($post_id, 'address', true);
$delivery = get_post_meta($post_id, 'delivery', true);
$phone = get_post_meta($post_id, 'phone', true);
$monday = get_post_meta($post_id, 'monday', true);
$tuesday = get_post_meta($post_id, 'tuesday', true);
$wednesday = get_post_meta($post_id, 'wednesday', true);
$thursday = get_post_meta($post_id, 'thursday', true);
$friday = get_post_meta($post_id, 'friday', true);
$saturday = get_post_meta($post_id, 'saturday', true);
$sunday = get_post_meta($post_id, 'sunday', true);
$sql="UPDATE markers SET name='$name', type='$type', neighborhood='$neighborhood', delivery='$delivery', phone='$phone, monday='$monday', tuesday='$tuesday', wednesday='$wednesday', thursday='$thursday', friday='$friday', saturday='$saturday', sunday='$sunday' WHERE id='$post_id'";
$result=$wpdb->query($sql);
$wpdb->query("INSERT INTO markers(name, address, lat, lng, type, neighborhood, delivery, phone, monday, tuesday, wednesday, thursday, friday, saturday, sunday, post_id)VALUES('$name', '$address', '$lat','$lng', '$type', '$neighborhood', '$delivery', '$phone', '$monday', '$tuesday', '$wednesday', '$thursday', '$friday', '$saturday', '$sunday', '$post_id')");
}