vin06 Posted February 12, 2012 Share Posted February 12, 2012 Hello.. Anyone knows a little bit about pixel tracking?? I need to implement it in my email.... Quote Link to comment https://forums.phpfreaks.com/topic/256963-pixel-tracking/ Share on other sites More sharing options...
vin06 Posted February 12, 2012 Author Share Posted February 12, 2012 Please guys i really need help! Anyone here can help me?? Quote Link to comment https://forums.phpfreaks.com/topic/256963-pixel-tracking/#findComment-1317327 Share on other sites More sharing options...
gizmola Posted February 12, 2012 Share Posted February 12, 2012 Pixel tracking involves specifying a url to a tracking script which returns a single pixel transparent image. The script uses parameters to update your email database to indicate that the email was actually looked at by the person it was sent to. What is your question? Quote Link to comment https://forums.phpfreaks.com/topic/256963-pixel-tracking/#findComment-1317349 Share on other sites More sharing options...
vin06 Posted February 13, 2012 Author Share Posted February 13, 2012 Well I have no idea at all how to do this.. I have created only the mail using php and I don't even know how to do this pixel tracking part and how.. I really need help with this! Quote Link to comment https://forums.phpfreaks.com/topic/256963-pixel-tracking/#findComment-1317685 Share on other sites More sharing options...
The Little Guy Posted February 13, 2012 Share Posted February 13, 2012 <?php // track information about this image that gets created $im=imagecreate(1,1); $white=imagecolorallocate($im,255,255,255); imagesetpixel($im,1,1,$white); header("content-type:image/jpg"); imagejpeg($im); imagedestroy($im); ?> Quote Link to comment https://forums.phpfreaks.com/topic/256963-pixel-tracking/#findComment-1317773 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.