Jump to content

Turbo

Members
  • Posts

    5
  • Joined

  • Last visited

About Turbo

  • Birthday 04/28/1986

Contact Methods

  • Website URL
    http://
  • ICQ
    337351594

Profile Information

  • Location
    Russia
  • Interests
    web-design, programming.

Turbo's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Turbo

    Newbie

    Yes, but with JavaScript you can create a small simple half-text games...:)such as fox hunt:http://www.xnick.org/games/fox/
  2. You need a script which will change the width and height properties of the banner on the window size changes... I don't actually know if it is possible in JavaScript
  3. Turbo

    email forms

    Hi :)Here is the free email hider. It asks you to enter:1. the email you want to encrypt2. the text for the link3. the image name (if scripts are turned off the image will appear). You can write on picture your email. If scripts turned off there will be no link but in any case the your email will be shown :)It is on JavaScript and it generates the Javascript code :)Here is the link: http://turbo.novline.ru/scripts/email_hider.htmland you can see the code here: <script> $link = prompt("Please enter the email which should be hidden from the bots", "user@domain.com"); $descr = prompt("Please enter the text of the link", "email me!"); $img = prompt("Please enter the image name.\nIf scripts are not allowed the picture will be shown instead of email-link.", "put here the global link to image on internet or put the local path to it on your server"); $crypted = ""; for($i=0; $i<$link.length; $i++) $crypted += $link.charAt($link.length-$i)+$link.charAt($i); </script> <pre> &LT;script&GT; </pre> <script> document.write("$crypted=\""+$crypted+"\";"); document.write("$descr=\""+$descr+"\";"); document.write("$img=\""+$img+"\";"); </script> <pre> $encrypted = ""; for($i=0; $i<$crypted.length/2; $i++) $encrypted += $crypted.charAt($i*2); document.write("&LT;a href=mailto:"+$encrypted+"&GT;"+$descr+"&LT;/a&GT; "); &LT;/script&GT; &LT;noscript&GT; </pre> <script> document.write("&LT;img src=\""+$img+"\"&GT;"); alert("Now close this window and get the JavaScript code!\n\n\n Enjoy! =)\n\n Written on JavaScript by nick [icq: 213647080]\n Modified, fixed and translated by Turbo [icq: 337351594]");</script> <pre> &LT;noscript&GT; </pre> P.S.: 2alsybabes: you need the PHP support on your hosting Or you can use the simple HTML code such as: <a href=mailto:user@domain.com?subject=blablablah>mail me!</a> But it will just open the email-client such as Outlook, Thunderbird, TheBat! or other if it installed... No directly sending from your site
  4. I use the following editors Bred3 (freeware for Russian users only, for Windows):http://www.astonshell.ru/freeware/bred3/Bred2 (freeware):http://www.astonshell.ru/freeware/bred2/P.S.: do anyone knows some cool freeware editors for Windows? :)I liked Kate editor very much (I saw the screenshots) but it is for Linux
×
×
  • Create New...