this is my HTML:
<?php echo form_open(base_url().'admin'); ?>
<div class="row username">
<span class="icon"></span>
<input type="text" value="" name="username" placeholder="Όνομα" />
</div>
<div class="row password">
<span class="icon"></span>
<input type="password" value="" name="password" placeholder="Κωδικος Πρόσβασης" />
</div>
<div class="row button">
<input type="submit" value="Σύνδεση" name="submit" />
</div>
<?php echo form_close(); ?>
so the button has as value “Σύνδεση” and when i click the submit button it returns nothing(null string)…
if i replace it with a text like “Sign in” it will work…
why it wont allow me to use non-latin characters?
problem was my MAMP version was old, something was wrong or so… so i removed it and added XAMPP for Mac OSX and its fine now.