Removing data from amfphp


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /**
  2. * We take one argument here, and that is the id of the snippet we are wanting to remove
  3. *
  4. * @param snippet_id the id to be removed
  5. *
  6. */
  7. public function removeSnippet( snippet_id:uint ):void
  8. {
  9. _service.call( "snippr.SnipprService.removeSnippet", new Responder( snippetRemoveHandler, snipprFaultHandler ), snippet_id );
  10. trace( "Removing Snippet" );
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.