Welcome Guest, Not a member yet? Register   Sign In
Problem with Form Validation on a page reload [SOLVED]
#11

[eluser]Ludovic-r[/eluser]
Hi,

Just use the sessions to sore your datas in the DB like

$newdata = array(
'username' => 'johndoe',
'email' => '[email protected]',
'logged_in' => TRUE
);

$this->session->set_userdata($newdata);

(don't miss to set TRUE the use of the DB for sessions in config)

then access to them via $this->session->userdata('item');

More infos here : http://ellislab.com/codeigniter/user-gui...sions.html
#12

[eluser]no-cost lab[/eluser]
thanks for your reply!
i know that sessions can be used,
i just don't know how to show the user that the selected file for the upload is still there.
for example, when the users chooses a file, the path to this file appears.
how would you show the same path in the upload box?

thanks again!!!
#13

[eluser]Enbex[/eluser]
Thanks a lot, Useful, I could fix my problem, I sure I will fix another problem, I am starting as developer




Theme © iAndrew 2016 - Forum software by © MyBB