%%[
var @EmailAddress, @CCID, @SubmitDate, @Brand, @sendId, @completed, @completedcheck, @firstname, @cereal_brand
SET @CCID = RequestParameter("CCID")
SET @EmailAddress = RequestParameter("EmailAddress")
SET @SubmitDate = now()
SET @sendId = RequestParameter("sendId")
SET @Brand = "Cereal MB"
SET @cereal_brand = RequestParameter("cereal_brand")
SET @firstname = RequestParameter("firstname")
UpsertData("Cereals_WCD_2025_Submissions",1,"CCID", @CCID,"EmailAddress", @EmailAddress, "Brand", @Brand,"SubmitDate", @SubmitDate, "sendId", @sendId, "cereal_brand", @cereal_brand)
]%%