Argh..lol, thank you very much..rookie mistake.

Thank you 

On Monday, 5 March 2018 22:51:23 UTC-5, Andrew Morgan wrote:
>
> Hello All,
>
> I have the below code, but the if statement is not functioning.No matter 
> what my selection is in the browser it returns "you entered correct car 
> <name of the car>"
>
> Please assist.Thank you 
>
>
> use Mojolicious::Lite;
>
>
> get '/' => sub {
>
>
> my $self = shift;
> $self->render('index');
> };
>
>
> post '/action' => sub{
> my $c = shift;
> $c->render('response', msg => $c->param('cars'));
> };
>
>
> app->start;
>
>
> __DATA__
>
>
> @@ index.html.ep
>
>
> <!DOCTYPE html>
> <html>
> <body>
>
>
> <form method= "POST" action="/action">
>   <select name="cars">
>     <option value="volvo">Volvo</option>
>     <option value="saab">Saab</option>
>     <option value="fiat">Fiat</option>
>     <option value="audi">Audi</option>
>   </select>
>   <br><br>
>   <input type="submit">
> </form>
>
>
> </body>
> </html>
>
>
> @@ response.html.ep
>
>
> %if($msg == "fiat"){
> You entered the correct car <%= $msg %>
> %}else{
> You did rubbish!! <%= $msg %>
> %}
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mojolicious+unsubscr...@googlegroups.com.
To post to this group, send email to mojolicious@googlegroups.com.
Visit this group at https://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.

Reply via email to