Support the ongoing development of Laravel.io →
Requests Input
Last updated 1 year ago.
0

Use Laravels Input class. http://laravel.com/docs/4.2/requests#basic-input

Input::get('key')
Last updated 1 year ago.
0

Hi iWader

I'm using laravel's input class. I tried editing my initial post but for some reason I can't update it. I'm doing the following.

I'm creating links with $_GET values in the $url as per below and not using HTML link() because I have html tags within the anchors and HTML link() echos it out as actual text instead of html.

<a href="search/{{$url}}"><span>{{$v}}</span></a>
Last updated 1 year ago.
0

When the link is clicked on it results in a url that has %2520.

P.S. I don't know what is up with the edit function on this forum but it's definitely broken.

Last updated 1 year ago.
0

I've gone and used urlencode() on my $_GET values when generating the links and used urldecode() when using the values in my code. Spaces have been replaced by + which I don't think our SEO is going to like but it's the only solution right now.

Last updated 1 year ago.
0

Laravel 5 or 4?

In Laravel 5, {{ }} escapes by default. {!! $url !!}

Last updated 1 year ago.
0

I had the same problem. The reason of the double encoding is the fact that I was redirecting to a url which ended with a /. Laravel redirects this route to a url without a slash, but performs the urlencoding twice.

So by removing the ending slash, I solved the problem.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

VenomRush venomrush Joined 27 May 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.