Ask Your Question
0

How can I insert two variables into the URL of my PHP Laravel project?

asked 2023-03-19 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-03-05 09:00:00 +0000

plato gravatar image

You can insert two variables into the URL of your PHP Laravel project by using the route function with parameters. Here's an example:

Route::get('/user/{id}/profile/{name}', function ($id, $name) {
    return 'User '.$id.'\'s profile name is '.$name;
});

In this example, the URL has two variables {id} and {name} which will be passed to the closure function as parameters. The first parameter will be used for the id variable and the second parameter will be used for the name variable. You can then use these variables to perform any required actions in your application.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-03-19 11:00:00 +0000

Seen: 7 times

Last updated: Mar 05 '23