26 Sep
2008
26 Sep
'08
10:05 a.m.
On Sep 25, 2008, at 10:28 PM, Dan Robinson wrote:
$filename = md5($conf['myapp_secret_salt'] + $form_state['values']['Qualifyers']['Email'] + time());
...
What am I doing wrong?
You're using arithmetic on your strings, not concatenation. Try this: $filename = md5($conf['myapp_secret_salt'] . $form_state['values'] ['Qualifyers']['Email'] . time()); I didn't completely audit the rest of your description, but that seems like the heart of the problem. Cheers, -Derek (dww)