The Little Guy Posted December 11, 2006 Share Posted December 11, 2006 Right now I cannot thing of the name, but I can explain it... It is a transparent 1x1px image that is used to get information about someone (Who ever access it). Anyone know what they are called, and how I can use PHP to get the information? Anyone know of any tutorials that I could read up on on these? Link to comment https://forums.phpfreaks.com/topic/30247-1x1px-image/ Share on other sites More sharing options...
kenrbnsn Posted December 11, 2006 Share Posted December 11, 2006 It called a "webbug". Do a google search to find out more.Ken Link to comment https://forums.phpfreaks.com/topic/30247-1x1px-image/#findComment-139095 Share on other sites More sharing options...
The Little Guy Posted December 11, 2006 Author Share Posted December 11, 2006 Thanks, but I don't know if it is just me, but I cannot find any help on webbugs, just information on what a webbug is. Link to comment https://forums.phpfreaks.com/topic/30247-1x1px-image/#findComment-139109 Share on other sites More sharing options...
mansuang Posted December 11, 2006 Share Posted December 11, 2006 For example:When you send email to someone in html format and you want to know when they read your email.You include [code]<img src="http://www.yourdomain.com/[email protected]" width=1 height=1 border=0>[/code] in your html email."notify.php" contains:[code]<?php// The message$message = $_GET['emailto']."opened your email at ".date("Y-m-d H:i:s");// Sendmail('[email protected]', $_GET['emailto'].' opened yoru email', $message);?> [/code]something like this Link to comment https://forums.phpfreaks.com/topic/30247-1x1px-image/#findComment-139131 Share on other sites More sharing options...
The Little Guy Posted December 11, 2006 Author Share Posted December 11, 2006 OK... That makes it much easier, I was thinking It would be way more difficult. Link to comment https://forums.phpfreaks.com/topic/30247-1x1px-image/#findComment-139161 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.