通过php阅读收据

时间:2014-06-23 19:23:53

标签: php

好的,所以我正在开发一个应用程序,在这个应用程序中,我需要了解多少人"看了我的邮箱。我在这里经历了各种各样的问题并开发了一个小小的解决方案,但它似乎并没有起作用。

以下是代码: -

checkr.php

<img src="http://localhost/tests/read-receipt/tracking.php?id=1">

tracking.php

<?php
include 'dbconnector.php';
if(isset($_GET['id']))
{
    //increment.
    try
    {
        $s = $conn->query("UPDATE test_number_of_count set count = count+1 where id=1");
        $s->execute();
    }
    catch(PDOException $e)
    {
        echo $e->getMessage();
    }
}
else
{
    echo "get not set";
}
?>

现在如果打开checkr.php,它应该更新数据库并增加计数,但它不会增加。我做错了什么?

这是我的数据库结构。 enter image description here

0 个答案:

没有答案