How to Encrypt a Single link or some text?

Discussion in 'HTML & Website Design' started by saddy, Apr 9, 2007.

Thread Status:
Not open for further replies.
  1. #1
    hey guys can anyone tell me the name of any tool,script or software which can help me to just encrypt a single link or some text, not the whole page! but there shoudn't be any decoder for it!


    any help appreciated
     
    saddy, Apr 9, 2007 IP
  2. abdussamad

    abdussamad Active Member

    Messages:
    543
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #2
    You can do that in PHP:

    
    <?php
    $str="my lovely string";
    $encrypted=md5($str);
    
    ?>
    
    PHP:
     
    abdussamad, Apr 10, 2007 IP
  3. saddy

    saddy Banned

    Messages:
    296
    Likes Received:
    46
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thanks for the reply dude but i m not using php, in html how to encrypt a link or some text
     
    saddy, Apr 10, 2007 IP
  4. deques

    deques Peon

    Messages:
    206
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #4
    you cant do that in html. if you have to encrypt, use php
     
    deques, Apr 10, 2007 IP
  5. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #5
    i think u can do the php md5 equivalent in javascript.
     
    just-4-teens, Apr 10, 2007 IP
  6. abdussamad

    abdussamad Active Member

    Messages:
    543
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #6
    Yes you'll need to use some programming language that allows you to process data. HTML is static.
     
    abdussamad, Apr 11, 2007 IP
  7. saddy

    saddy Banned

    Messages:
    296
    Likes Received:
    46
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Thanks frend for your replies, but i have found the way! thanks a lot for all your support
     
    saddy, Apr 11, 2007 IP
Thread Status:
Not open for further replies.