for some reason whenevever i try to pass 0 using a url parameter variable, on the other end it ends up as empty or null. How do i pass 0 from let's say page A to page B using url parameters?
In symfony
echo form_tag('application/recognition?step=0')?>
ends up being like
application/recognition
and step is lost, however if 0 is changed to 1 it does work.
Thanks..