Skip to content

Instantly share code, notes, and snippets.

@iqbalmalik89
Created February 12, 2015 22:14
Show Gist options
  • Save iqbalmalik89/0fe61ce9a9efa684e476 to your computer and use it in GitHub Desktop.
Save iqbalmalik89/0fe61ce9a9efa684e476 to your computer and use it in GitHub Desktop.
<?php
require 'vendor/autoload.php';
$app = new \Slim\Slim(array(
'debug' => true
));
$app->add(new Category());
// Add Category
$app->post('/category' , function () use ($app){
});
// Add Category
$app->post('/categoryupdate' , function () use ($app){
});
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment