Guest User

Untitled

a guest
Jan 16th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <meta name="description" content="">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. </head>
  9. <body>
  10. <p>
  11. placeholder
  12. </p>
  13. </body>
  14. %%[
  15. Var @ontrade, @email, @otdec, @emdec, @update1, @update2
  16.  
  17. Set @ontrade = Lookup('GB_Test_Kit_Count', 'count', 'type', 'ontrade')
  18. Set @email = Lookup('GB_Test_Kit_Count', 'count', 'type', 'email')
  19. Set @otdec = @ontrade-1
  20. Set @emdec = @email-1
  21.  
  22. Set @update1 = UpdateData(
  23. 'GB_Test_Kit_Count',
  24. 1,
  25. 'type',
  26. 'ontrade',
  27. 'count',
  28. @otdec
  29. )
  30.  
  31. Set @update2 = UpdateData(
  32. 'GB_Test_Kit_Count',
  33. 1,
  34. 'type',
  35. 'email',
  36. 'count',
  37. @emdec
  38. )
  39. ]%%
  40. </html>
Add Comment
Please, Sign In to add comment