[eluser]porta_ss[/eluser]
it returns bool(false) even when it shouldn't

. I checked the names of the inputs, then the corresponding names in the controller...they are identical...no typing errors...I don't know...this is the form in the view...
Code:
<?php $this->load->view('general/upper'); $var = base_url() . 'system/application/assets/'; ?>
<p class="description">Vrei sa fii reseller WebCouture? Completeaza formularul de mai jos si te vom contacta in cel mai scurt timp.</p>
<p>
<div>
<div style="float:left;width:250px;">
<?php echo form_open('parser/nou');?>
<?php if(form_error('nume')){echo '<span style="color:red;">' . form_error('nume') . '</span>';} else echo '<label for="nume">Nume</label><br />'; ?>
<input type="text" name="nume" class="border" /> <span style="color:#ff0000;">*</span><br />
<?php if(form_error('prenume')){echo '<span style="color:red;">' . form_error('prenume') . '</span>';} else echo '<label for="prenume">Prenume</label><br />'; ?>
<input type="text" name="prenume" class="border" /> <span style="color:#ff0000;">*</span><br />
<?php if(form_error('oras')){echo '<span style="color:red;">' . form_error('oras') . '</span>';} else echo '<label for="oras">Oras</label><br />'; ?>
<input type="text" name="oras" class="border" /> <span style="color:#ff0000;">*</span><br />
<?php if(form_error('email')){echo '<span style="color:red;">' . form_error('email') . '</span>';} else echo '<label for="email">Email</label><br />'; ?>
<input type="text" name="email" class="border" /> <span style="color:#ff0000;">*</span><br />
<?php if(form_error('telefon')){echo '<span style="color:red;">' . form_error('telefon') . '</span>';} else echo '<label for="telefon">Telefon</label><br />'; ?>
<input type="text" name="telefon" class="border" /> <span style="color:#ff0000;">*</span><br />
<label for="cui">C.U.I.</label><br />
<input type="text" name="cui" class="border" /><br />
<label for="referrer">Unde ai auzit de WebCouture?</label><br />
<input type="text" name="referrer" class="border" /><br />
</div>
<div style="float:left;">
<label for="ocupatia">Ocupatia</label><br />
<?php if(form_error('ocupatia')){echo form_error('ocupatia');} ?>
<input type="text" name="ocupatia" class="border" /> <span style="color:#ff0000;">*</span><br />
<label for="varsta">Varsta</label><br />
<input type="text" name="varsta" class="border" /><br />
<label for="adresa">Adresa</label><br />
<input type="text" name="adresa" class="border" /><br />
<label for="timp">Timp disponibil pentru activitatea de reseller</label><br />
<input type="text" name="timp" class="border" /><br />
<label for="mesaj">Mesaj aditional (optional)</label><br />
<textarea name="mesaj" class="border" cols="40" rows="5"></textarea><br /><br />
<input type="submit" value="Trimite" />
</form>
</div></div>
</p>
</div>
</div>
<?php $this->load->view('general/right'); ?>
<?php $this->load->view('general/footer'); ?>