$f3->route('GET|POST @login: /login', 'Controller\Inside->login');
$f3->route('GET @logout: /logout', 'Controller\Inside->logout');
$f3->route('GET @start: /start', 'Controller\Inside->start');
$f3->route('GET @external_sync: /sync', 'Controller\Inside->sync');
$f3->route('GET @getbadges: /get-badges/@username', 'Controller\CodeAcademy->getBadges'); // returns 404
$f3->run();
namespace Controller;
class CodeAcademy
{
public function getBadges(\Base $f3, $params)
{
$username = $f3->get('PARAMS.username');
echo $username . ': ' . rand(0, 25);
}
}
--
-- You've received this message because you are subscribed to the Google Groups group. To post to this group, send an email to f3-fra...@googlegroups.com. To unsubscribe from this group, send an email to f3-framework+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/f3-framework?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "Fat-Free Framework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/f3-framework/8oqfdUPiZtE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to f3-framework+unsubscribe@googlegroups.com.
To post to this group, send email to f3-fra...@googlegroups.com.
Visit this group at https://groups.google.com/group/f3-framework.
To view this discussion on the web visit https://groups.google.com/d/msgid/f3-framework/634409e7-26bc-4fd5-8133-fea659535ed2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I still don't understand why it works for some routes and not others
--
-- You've received this message because you are subscribed to the Google Groups group. To post to this group, send an email to f3-fra...@googlegroups.com. To unsubscribe from this group, send an email to f3-framework+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/f3-framework?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "Fat-Free Framework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/f3-framework/8oqfdUPiZtE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to f3-framework+unsubscribe@googlegroups.com.
To post to this group, send email to f3-fra...@googlegroups.com.
Visit this group at https://groups.google.com/group/f3-framework.
To view this discussion on the web visit https://groups.google.com/d/msgid/f3-framework/67671c2c-f436-4718-9829-530021c9cfba%40googlegroups.com.