It is necessary to deduce from the database the text, or rather the e-mail address, in the html-code from right to left. To store the address read from right to left in the database is somehow inconvenient. Necessary to protect against spam bots (overpowered). Print the address from right to left, and then change it using CSS - direction:ltr to read from left to right. Is there any method?

    1 answer 1

    try this

     echo strrev($url); 
    • Thank you very much! Exactly what is needed! - Torawhite