Sorry, poor choice of words.
I want to do something like:
printf(" %s='$%s',%s='$%s'\n, $myrow[1], $myrow[2]);
But I don't know how to make $myrow = field names instead of values. I think it is a mysql command but I don't know . . .
I just want to stop having to type in all of this stuff:
$sql = "UPDATE vipcustomer SET first_name='$first_name',last_name='$last_name',income_level='$income_level',children='$children',pager='$pager',cellno='$cellno',Occupation='$Occupation',employer='$employer',SSNO='$SSNO',fax='$fax',fax_ac='$fax_ac',HomePhone='$HomePhone',email='$email',mstatus='$mstatus' WHERE custid=$uid";
because it changes so freqently.