Hi all,
I want to receive a GET request like that:
people.php?name=Joe&age=24
For that, I have defined the route following:
Route::get('people.php?name={username}&age={id}', array('as' => 'people/username/age', 'uses' => 'ExtraController@xfunction'));
But this seems not working. How should I define the route.
I don't understand why you need to get values in route file.
In my case, I get those kind of parameters in Controllers.
$user_name = Input::get('name');
$age = Input::get('age');
Route file:
Route::get('people.php', array('as' => 'people', 'uses' => 'ExtraController@xfunction'));
or you may configure the url like this.
people.php/Joe/24
Route::get('people.php/{username}/{age}', array('as' => 'people/username/age', 'uses' => 'ExtraController@xfunction'));
How's that? You may select one of my suggestions.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community