Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a basic form where i would like to extract the user input and then display the concatenated inputs from the form

    echo Form::open('url_encoder','GET');
echo Form::token();
echo Form::text('dest', null, array('class' => 'span3', 'placeholder' => 'Destination...'));
echo "<br>";
echo Form::text('utm_source', null, array('class' => 'span3', 'placeholder' => 'Source...'));
echo "<br>";    
echo Form::text('utm_content', null, array('class' => 'span3', 'placeholder' => 'Content...'));
echo "<br>";
echo Form::text('utm_medium', null, array('class' => 'span3', 'placeholder' => 'Medium...'));
echo "<br>";
echo Form::text('utm_campaign', null, array('class' => 'span3', 'placeholder' => 'Campaign...'));   
echo "<br>";
echo Form::submit('Encode');    
echo Form::close();

I would like to add something after this to concatenate the input. In Laravel my previous way of doing this does not work. I was setting variables that that would use $_GET to grab the form input. Then I would call the variables and concatenate the variables together (ie. echo "$var1" . "$var2" . "$var3").

Can someone suggest how this would be done in Laravel?

share|improve this question

1 Answer

Use the Input class

echo Input::get();
share|improve this answer
something like echo Input::get('var1'); ? – user1763208 Dec 15 '12 at 6:32
its up to you. Input:get() will output all the input vals. Or you can do Input:get('var1') to just get that var. – The Shift Exchange Dec 15 '12 at 6:34
I have tried what you suggest but i cannot get the Input::get(); variable to echo out the form input. Any thoughts on why it wouldnt be working. This has been difficult for no reason. Sorry to be a bother i just want to figure this out. – user1763208 Dec 17 '12 at 0:59
where are you trying to output the variable? if its another view/function - you need to include "->with_input()" on the redirect – The Shift Exchange Dec 17 '12 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.