php - Openssl_decrypt doesn't recognize the value of $_GET -
does 1 know why when write :
$decrypted = openssl_decrypt($given_code , $method , $password);
works fine , when
$given_code = $_get['given_code'];
the openssl_decrypt returns nothing ??? on php of course
ok found out : problem related url encoding , did urlencode value of code generated openssl_encrypt before sending other page
Comments
Post a Comment