1. The forums will be archived and moved to a read only mode in about 2 weeks (mid march).

Reverse text on a website

Discussion in 'Off-Topic' started by Muqsit, Apr 19, 2017.

  1. Muqsit

    Muqsit Chicken

    Messages:
    1,548
    GitHub:
    muqsit
    Does anyone know how to reverse text on a website.
    I am aiming to re-host a website with text reversed.
     
  2. Thunder33345

    Thunder33345 Moderator Staff Member

    Messages:
    2,137
    GitHub:
    Thunder33345
  3. Muqsit

    Muqsit Chicken

    Messages:
    1,548
    GitHub:
    muqsit
    ...except that I'd like to rotate just the content.
    Eg:
    PHP:
    $cont file_get_contents("http://www.facebook.com");
    /*
    * echo strrev($cont) will reverse the whole
    * code, displaying the "reversed" index of
    * the page's code. I just want the main
    * content of the page to be shown
    * reversed.
    */
    echo $cont;
     
  4. ICU

    ICU Silverfish

    Messages:
    15
    You can use css

    .content {
    transform: rotate(180deg);
    }
     
  5. Thunder33345

    Thunder33345 Moderator Staff Member

    Messages:
    2,137
    GitHub:
    Thunder33345
    regex everything inside of HTML tags and only reverses these
     
  6. jojoe77777

    jojoe77777 Shog Chips

    Messages:
    0
    GitHub:
    jojoe77777
    You're using my suggestion for aidepikiw.org ? :p

     
  7. Muqsit

    Muqsit Chicken

    Messages:
    1,548
    GitHub:
    muqsit
    SHHHHHHHHHH
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.