Jump to content

Display of encrypted string


son

Recommended Posts

The function's name is sha1() , not sha().There's also md5(), and if you're really into it, there's also the hash() function.As a side note, you should enable error display when testing, so that you could see such errors.... you know, a message like 'Call to an undefined function "hash"'. To do that, add

ini_set('display_errors', 'On');

at the very top of your PHP code.

Link to comment
Share on other sites

The function's name is sha1() , not sha().There's also md5(), and if you're really into it, there's also the hash() function.As a side note, you should enable error display when testing, so that you could see such errors.... you know, a message like 'Call to an undefined function "hash"'. To do that, add
ini_set('display_errors', 'On');

at the very top of your PHP code.

Cheers, mate. Do this right away...Son
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...