Jump to content

Recommended Posts

This would show users their IP address on an image. I was trying to fix it, but I am not seeing why it's not working.

 

<?php
$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$textcolor = imagecolorallocate($img_number,255,255,255);

imagefill($img_number,0,0,$backcollor);
$number = " Your IP is $_SERVER[REMOTE_ADDR]";



header("Content-type: image/jpeg");
imagejpeg($img_number);
?>

 

I'm not sure why. Help? :(

Link to comment
https://forums.phpfreaks.com/topic/185125-fancy-ip-showing-way/
Share on other sites

After you fix the typo in $backcollor on line 6, it works for me.

 

You should be developing php code and debugging php code on a system with error_reporting set to E_ALL and display_errors set to ON in your master php.ini so that php will help you find things like that.

Link to comment
https://forums.phpfreaks.com/topic/185125-fancy-ip-showing-way/#findComment-977222
Share on other sites

Okay, I found out the image wasn't being created with Imagestring.. the below code is working for me.

 

Thank you Maq and PFMaBiSMaD.

 

<?php
$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$textcolor = imagecolorallocate($img_number,255,255,255);

imagefill($img_number,0,0,$backcolor);
$number = " Your IP is $_SERVER[REMOTE_ADDR]";

Imagestring($img_number,10,5,5,$number,$textcolor); // This fixed it.

header("Content-type: image/jpeg");
imagejpeg($img_number);
?>

Link to comment
https://forums.phpfreaks.com/topic/185125-fancy-ip-showing-way/#findComment-977227
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

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.