I am asking about the way of use of crypt() If I do: $my_crypted_sting=crypt($my_string,'123');
How then can I de-crypt back my $my_string?
You can't.
Very true, There is no decrypt function, since crypt() uses a one-way algorithm.
--Please Refer manual as the first help it is great