Linked Questions
64 questions linked to/from How do you Encrypt and Decrypt a PHP String?
-1 votes
1 answer
84 views
How to encrypt/hash data in $_GET in PHP?
I'm a beginner in PHP. Is it possible to hash $_GET data before sending it? For example, I want to redirect to : samplepage.php?id=1 How do I turn it into: samplepage.php?id=6rP7Fre4QkZShmTbpCuhuV....
0 votes
1 answer
67 views
How to encode url in base64 that no body can decode it
I want to encode my urls in base64 and decode it in my functions and no body can decode it how can i do this. <?php $somestring = 'here is my some string'; $url = 'http://google.com/'.$somestring; ...
0 votes
0 answers
54 views
Decrypted algorithm just sometimes works [duplicate]
I want to encrypt an email to decrypt later. At that point I don't care about safety, I just want it working. The mail is stored in $umail Researching stackoverflow I found the following code which ...
0 votes
2 answers
68 views
Im trying encrypt some text using a fucntion in php
I found a tutorial online on how to encrypt strings in php but when I call the function and try echo the processed data I'm getting 500 internal error. Here is my code below. <?php $...