It is actually quite a few columns being inserted. This was watered down for troubleshooting. A number of variables are coming from different rows of the same table, some variables are coming from elsewhere. Here is the actual INSERT:
$stmtInsert = mysqli_prepare($link, "
INSERT INTO TicketPrices(
player,
promoter,
location,
shipping,
eventDate,
dueBy,
returnBy,
note,
item,
price,
itemNote,
whose,
moAS,
evID
)
VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?)
");
mysqli_stmt_bind_param($stmtInsert, 'ssssssssssssss',
$rPlayer,
$rPromoter,
$rLocation,
$rShipping,
$rEventDate,
$rDueBy,
$rReturnBy,
$rNote,
$rItem,
$rPrice,
$rItemNote,
$rWhose,
$rMoAS,
$pDupeEvID
);