no name Posted March 27, 2003 Share Posted March 27, 2003 so yeah, how to do it??? Link to comment Share on other sites More sharing options...
0 OrangesOfCourse Posted March 27, 2003 Share Posted March 27, 2003 do you mean what to put in the file or how to link it? to link it.. do this: [img ]http://bleh.com/phpfile.php[/img] -- just take out the space :) Link to comment Share on other sites More sharing options...
0 no name Posted March 27, 2003 Author Share Posted March 27, 2003 like how to make the .php file so u can link it... could you please tell me about both? (how to put in the file and how to link it) Link to comment Share on other sites More sharing options...
0 Smitjel Posted March 27, 2003 Share Posted March 27, 2003 I think he wants to know how to run php in your sig... :huh: Link to comment Share on other sites More sharing options...
0 Gromvar Posted March 27, 2003 Share Posted March 27, 2003 I've wondered for awhile too. Jago was going to e-mail me his php script sometime this weekend. (crosses fingers) Link to comment Share on other sites More sharing options...
0 John Veteran Posted March 27, 2003 Veteran Share Posted March 27, 2003 you mean put a link in your sig? i think it's [url ]http://mysite.com/phpfile.php[/url] Link to comment Share on other sites More sharing options...
0 OrangesOfCourse Posted March 27, 2003 Share Posted March 27, 2003 lol.. i only know how to link it.. some one will reply.. just wait :) Link to comment Share on other sites More sharing options...
0 Flip_Kid Posted March 27, 2003 Share Posted March 27, 2003 Your php must be compiled and configured with the GD image functions. Then, use the functions documented here: http://www.php.net/image Link to comment Share on other sites More sharing options...
0 no name Posted March 28, 2003 Author Share Posted March 28, 2003 not to put a LINK in sig, but to put a .PHP file in the sig!!! does that make sense? Link to comment Share on other sites More sharing options...
0 Flip_Kid Posted March 28, 2003 Share Posted March 28, 2003 i just told you .... Link to comment Share on other sites More sharing options...
0 no name Posted March 28, 2003 Author Share Posted March 28, 2003 you just did but im still confused and dunno how to do it Link to comment Share on other sites More sharing options...
0 Smitjel Posted March 28, 2003 Share Posted March 28, 2003 What is your php file doing no name? Link to comment Share on other sites More sharing options...
0 no name Posted March 28, 2003 Author Share Posted March 28, 2003 No, actually I am just wondering if that is possible. Ok, i wanna put different pictures to my sig everyday. The filenames of the pictures are based on the date for instance, 03272003 and so on. so i just wonder how to do that thx for help! :) Link to comment Share on other sites More sharing options...
0 epton Posted March 28, 2003 Share Posted March 28, 2003 find a random image script (google) and do what was posted above. Link to comment Share on other sites More sharing options...
0 Flip_Kid Posted March 28, 2003 Share Posted March 28, 2003 Use the following code: (some of it is pseudocode cause I'm in a hurry and don't have time to write it all) <? $imgname = "/home/noname/".date(DATE_PARAMS)."jpg"; //replace DATE_PARAMS with the string you need (and edit the path) $img = ImageCreateFromJpeg($imgname); header("Content-type: image/jpeg"); imagejpeg($img,'',100); //change the quality to lower if you want. default is 75 imagedestroy($img); ?> or, if you don't need your image to be dynamic, you can save some processing time by just fopen()'ing the correct file and outputting it :) Link to comment Share on other sites More sharing options...
0 Joel Posted March 28, 2003 Share Posted March 28, 2003 Moved here Link to comment Share on other sites More sharing options...
0 no name Posted March 29, 2003 Author Share Posted March 29, 2003 yeah i tried it bit it still doesnt work! Link to comment Share on other sites More sharing options...
0 WnXP2002 Posted March 30, 2003 Share Posted March 30, 2003 no name, what php code do you use now, as i see you have it working (your sig is in php) Link to comment Share on other sites More sharing options...
Question
no name
so yeah, how to do it???
Link to comment
Share on other sites
17 answers to this question
Recommended Posts