Guest User

Untitled

a guest
Oct 22nd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. ## Code
  2. if ($action=="5"){
  3. $db->setDebug('true');
  4. $rid=$_REQUEST['rid'];
  5.  
  6. $fields = array(5 =>'itemno', 'itemdesc', 'mat', 'matdesc', 'desc', 'addinfo', 'img', 'size', 'weight', 'n1', 'n2', 'n3', 'n4', 'n5', 'r1', 'r2', 'r3', 'r4', 'r5', 'cat');
  7.  
  8. $i=5;
  9.  
  10. foreach($_REQUEST['q'] as $a){
  11. if (!$a == ""){
  12. echo 'Setting '.$fields[$i].' to '.$a.'...';
  13. $b= htmlentities($a, ENT_QUOTES);
  14. $rs = $db->Execute("update prod set $fields[$i] = '$b' where id = '$rid'");
  15. if (!$rs === false) {echo'Done!<br />';}else {die ('ERROR!');}
  16. }
  17. $i++;
  18. };
  19. echo 'All Updates done';
  20. }
  21.  
  22. ## Output
  23.  
  24. Setting matdesc to Nylon - Multiple color options...
  25. --------------------------------------------------
  26. (mysql): update prod set matdesc = 'Nylon - Multiple color options' where id = '1'
  27. --------------------------------------------------
  28. Done!
  29. Setting matdesc to Nylon - Multiple color options...
  30. --------------------------------------------------
  31. (mysql): update prod set matdesc = 'Nylon - Multiple color options' where id = '1'
  32. --------------------------------------------------
  33. Done!
  34. Setting desc to This American-made classic has been down-sized by request but still offers appeal for its unisex appeal practical utility and versatility for school sports to corporate brand identity programs. U-PIK your own multi-color combination. Mix and match the duffel body ends webbing trim and zipper colors for the ultimate in customization 600 denier nylon lightweight and tear-resistant produces vibrant colorfast colors....
  35. -------------------------------------------------
  36. (mysql): update prod set desc = 'This American-made classic has been down-sized by request but still offers appeal for its unisex appeal practical utility and versatility for school sports to corporate brand identity programs. U-PIK your own multi-color combination. Mix and match the duffel body ends webbing trim and zipper colors for the ultimate in customization 600 denier nylon lightweight and tear-resistant produces vibrant colorfast colors.' where id = '1'
  37. -------------------------------------------------
  38.  
  39. 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'desc = 'This American-made classic has been down-sized by request but still offe' at line 1
  40.  
  41. An unexpected error occurred.
  42.  
  43. mysql error: [1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'desc = 'This American-made classic has been down-sized by request but still offe' at line 1] in EXECUTE("update prod set desc = 'This American-made classic has been down-sized by request but still offers appeal for its unisex appeal practical utility and versatility for school sports to corporate brand identity programs. U-PIK your own multi-color combination. Mix and match the duffel body ends webbing trim and zipper colors for the ultimate in customization 600 denier nylon lightweight and tear-resistant produces vibrant colorfast colors.' where id = '1'")
Add Comment
Please, Sign In to add comment