I have a simple ordering form in the app I'm developing:
{{ Form::open(array('route' => 'get.index', 'method' => 'get')) }}
{{ Form::label('order', 'Order by') }}
{{ Form::select('order' , array('firstname' => 'First Name', 'lastname' => 'Last Name', 'state' => 'State')) }}
{{ Form::submit('Order results') }}
{{ Form::close() }}
I'd like to append the order GET variable to be appended to variables in the query string if present, instead of overriding everything.
Is this possible somehow?
$_SERVER['QUERY_STRING']) and the browser will append the new values.