WebForm To Send Data to Existing Record ? aka in SQL as "UPDATE"

WebForm To Send Data to Existing Record ? aka in SQL as "UPDATE"

Hi Zoho Community,

I'm familar with Zoho CRM Webforms but as far as I know, webforms can only create a new record in our CRM database.

QUESTION :
Is there a method in which a webform can UPDATE a record in zoho CRM ( given I have the record ID ) ?

Can I modify my form code to update an existing record?  
I refer to my SQL and PHP experience where I'd just send an UPDATE to the database.

If this is not the right approach, please point me in the right direction. 
.... or is this just not possible ?

Here is a basic webform code :

  1. <div id='crmWebToEntityForm' style='width:600px;margin:auto;'>
  2.    <META HTTP-EQUIV ='content-type' CONTENT='text/html;charset=UTF-8'>
  3.    <form action='https://crm.zoho.com/crm/WebForm'  name=WebForm############ method='POST' onSubmit='javascript:document.charset="UTF-8"; return checkMandatory()' accept-charset='UTF-8'>

  4. <!-- Do not remove this code. -->
  5. <input type='text' style='display:none;' name='xnQsjsdp' value='#####'/>
  6. <input type='hidden' name='zc_gad' id='zc_gad' value=''/>
  7. <input type='text' style='display:none;' name='xmIwtLD' value='#########'/>
  8. <input type='text' style='display:none;'  name='actionType' value='Q3VzdG9tTW9kdWxlNQ=='/>

  9. <input type='text' style='display:none;' name='returnURL' value='returnlink;' /> 
  10. <!-- Do not remove this code. -->
  11. <style>
  12. tr , td { 
  13. padding:6px;
  14. border-spacing:0px;
  15. border-width:0px;
  16. }
  17. </style>
  18. <table style='width:600px;background-color:#000000;color:#417342'>

  19. <tr><td colspan='2' style='text-align:left;color:#417342;font-family:Arial;font-size:18px;'><strong> Form</strong></td></tr>




  20. <tr><td  style='nowrap:nowrap;text-align:right;font-size:16px;font-family:Arial;width:200px;'>Name</td><td style='width:250px;' ><input type='text' style='width:250px;'  maxlength='255' name='COBJ5CF162' /></td></tr>



  21. <script>
  22.  

  23.    function checkMandatory() {
  24. for(i=0;i<mndFileds.length;i++) {
  25.  var fieldObj=document.forms['WebForm1338246000004338027'][mndFileds[i]];
  26.  if(fieldObj) {
  27. if (((fieldObj.value).replace(/^\s+|\s+$/g, '')).length==0) {
  28. if(fieldObj.type =='file')
  29. alert('Please select a file to upload.'); 
  30. fieldObj.focus(); 
  31. return false;
  32. alert(fldLangVal[i] +' cannot be empty.'); 
  33.          fieldObj.focus();
  34.          return false;
  35. }  else if(fieldObj.nodeName=='SELECT') {
  36.       if(fieldObj.options[fieldObj.selectedIndex].value=='-None-') {
  37. alert(fldLangVal[i] +' cannot be none.'); 
  38. fieldObj.focus();
  39. return false;
  40.   }
  41. } else if(fieldObj.type =='checkbox'){
  42.   if(fieldObj.checked == false){
  43. alert('Please accept  '+fldLangVal[i]);
  44. fieldObj.focus();
  45. return false;
  46.   } 
  47. try {
  48.     if(fieldObj.name == 'Last Name') {
  49. name = fieldObj.value;
  50.      }
  51. } catch (e) {}
  52.    }
  53. }
  54.     }
  55.   
  56. </script>
  57. </form>
  58. </div>

Thanks,
Aaron