I have two tables 'siblings' and 'parents' which I would like to insert values from a form into. Basically what I am looking for is a pretty basic insert syntax that will not require two different inserts. Would it be possible to do something like
UPDATE siblings s,parents p SET s.parentname=$spname, u.parentname=$upname
??
Thanks!