How to make a file encrypt and decrypt?
Answer Posted / prabhu
md5_file()...
example...
<?php
$filename = "test.txt";
$md5file = md5_file($filename);
echo $md5file;
?>
output:5d41402abc4b2a76b9719d911017c592
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
How to download file in php?
What are different types of errors available in Php?
Tell me what is the main difference between require() and require_once()?
Explain what is the function file_get_contents() usefull for?
What is mvc? Why its been used?
How to merge values of two arrays into a single array?
How to block direct directory access in PHP?
What is session in php w3schools?
Applications written to provide a GUI shell for Unix and Linux are called
How come the code works, but does not for two-dimensional array of mine?
What does trim () do in javascript?
Explain me what are the main error types in php and how do they differ?
What does addslashes do in php?
What is a variable cost example?
What is the difference between nowdoc and heredoc?