Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 598 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 598 Bytes

Basic PHP Todo API

  1. Full List
  2. status = 1 List
  3. ID List
  4. Name List
  5. Update
  6. Delete
  7. Insert

API >

index.php?api_key=cyprs $tablename = "todo";

  • Full LIST

index.php?api_key=cyprs&getall=full

  • STATUS 1 Get All

index.php?api_key=cyprs&get_status_one=full

  • GET ID FETCH

index.php?api_key=cyprs&getone_id={id}

  • Get Name FETCH

index.php?api_key=cyprs&getone_name={name}

  • STATUS 1 UPDATED

index.php?api_key=cyprs&update_status_id={id}

  • DELETED

index.php?api_key=cyprs&delete_id={id}

  • INSERT

index.php?api_key=cyprs&name={name}