movies.php 218 B

12345678910111213
  1. <?php
  2. header("Content-type: application/json");
  3. ?>
  4. {
  5. "success": true,
  6. "data": [{
  7. "title": "The Matrix",
  8. "year": "1999"
  9. }, {
  10. "title": "Star Wars: Return of the Jedi",
  11. "year": "1983"
  12. }]
  13. }