Jump to content
xisto Community

Normano

Members
  • Content Count

    35
  • Joined

  • Last visited

Everything posted by Normano

  1. Is it possible to sell tanned in grand exchange? even if it was fun i should not do it
  2. This is a good guide for people that need help with geting money;Dbut im rich so i dont need this guide:P =29mil right now
  3. You can't hyperlink generated images because its a png file, in some forums it not allowable to ahve .php generated images files, put a ".htaccess" file in the directory with this codeRewriteEngine OnRewriteRule ^([^/]*)\.png$ /path to file/gd.php?text=$1 [L]now the you can come to ur generated image with this url .../yourtext.png
  4. I dont know if someone already made a topic like this, however it's not hard to understand if you can php, as many know we need to start a php script with <?phpand end with ?>to make a image you need a image type, I choos .png because its much cleaner then .jpg header("Content-type: image/png");for the background for the image we need this code $image = imagecreatefrompng("http://forums.xisto.com/no_longer_exists/404.pngif we wont a text in the image we need a font color, we get our font color from HEX values $font_white = imagecolorallocate($image, 255, 255, 255);if u wont a text that can bee changes when the file is created and dont wont to open the file use this $string = $_GET["text"];then imagestring($image, 2, 12, 3, "Ice Fury", $font_white);imagestring($image, 2, 84, 3, $string, $font_white);to save space we use this code imagepng($image);imagedestroy($image);when we finnish the code should look like this <?phpheader("Content-type: image/png");$image = imagecreatefrompng("http://forums.xisto.com/no_longer_exists/404.pngpath to file "../image.php?text=hello" now is hello writed on the image Hope you like it
  5. Thats good, now i know what it is, thanks for the help:D
  6. I use WS_FTP Home and its a very good ftp but some files is not allowed after you install it so you need to change on some things in options, when you start it you get a 3 creens there you can see ftp, hard drive and transfer manger, itsnot free but you can get a 30 days trail on it on Ipswitch. Is CuteFTP free? on CuteFTP site it cost some cash but many say its free, is it? If its free i going to use it but if it cost i use WS_FTP Home. Smart FTP is not free and i dont like the style on it. FTP Surfer is not the best but its free:D
  7. Do you know what Firebird is?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.