Welcome Guest, Not a member yet? Register   Sign In
hidden form
#1

[eluser]shahnawazahmed[/eluser]
hello developers

i want assign a randomly generated code to the database field hidden form . i generate code with $activation = md5(uniqid(rand(), true)); and now i want to assign to the activation field in the db , so i am using this code in the form

echo form_hidden('activation', '$activation');

but its not assigning the andom code to the field .

#2

[eluser]SolarisDev[/eluser]
you have error in your code, try like this:
Code:
$activation = 'test field';
echo form_hidden('activation', $activation);
You don't need single quotes around $activation

Regards
#3

[eluser]shahnawazahmed[/eluser]
it works .. Thank you friend Smile




Theme © iAndrew 2016 - Forum software by © MyBB