Forum Moderators: coopster
just wondering if it is possible to make a email read verification method using php. i was thinking something like adding a image to an email and somehow get a script to update the number fo times the image has been loaded. what then if the email receiver does not support html?
or is it possible to do something with javascript(this woudl be a bit dodgy thoug,,,i think)?
thanks in advance
kumar
on verification.php
$id = (int)$_GET["id"];
$user = (ctype_alnum($_GET["user"] === true)? $_GET["user"] : "";
if(function_that_will_validate($user, $id))
{
//verified read
}
else
{
//not verified
}
//read image
echo $img;
Forget javascript, as most post managers disallow even simple js, as it may be security breach.
Hope this helps
Michal Cibor