小编You*_*eat的帖子

通过 php 检索网络邮件以在网站上使用

首先,我首先要说的是,我对电子邮件和电子邮件服务器及其工作方式完全是菜鸟。我想做的是从我的托管服务器(hostgator)检索我的电子邮件并通过php. 我正在为我的几个合作伙伴建立一个网站,他们希望用户界面尽可能简单,因此我不希望他们必须登录cpanel才能检查电子邮件,我希望电子邮件显示在网站管理小组我一直在研究什么建议?

php user-interface information-retrieval webmail

3
推荐指数
1
解决办法
3214
查看次数

在PHP 5.3中将DateTime对象与另一个对象进行比较

好的,所以我正在制作一个基于文本的在线游戏,现在我已经完成了一个完成:

function....

    // I can't get this script to execute when I know the time has passed.

    $now = new DateTime("now", new DateTimeZone('UTC'));
    $row_date = new DateTime($row["due_date"], new DateTimeZone('UTC'));

    if ($row_date->format('Y-m-d H:i:s') <= $now->format('Y-m-d H:i:s')) 
    {
        mysql_query(".....")VALUES ("....")or die(mysql_error());
        mysql_query("DELETE FROM ......")or die(mysql_error());
    }
    else 
    {
        // The time has not come yet.
    }
Run Code Online (Sandbox Code Playgroud)

这个代码将使用jQuery的setInterval每10秒执行一次.

php datetime compare

1
推荐指数
1
解决办法
5041
查看次数

将 jQuery 侦听器附加到所有 &lt;a&gt; 元素并获取它们的 ID?

我需要获取所有<a>链接的 ID,以便我可以根据它们的内容制作 Ajax 帖子

$(document).ready(function(e) {
   $('a').click(function(e) {
       var linker = this.attr('id');
       alert(linker);
       // Here I will then make an Ajax call, but I know how to do that :)
   });
});
Run Code Online (Sandbox Code Playgroud)

jquery event-listener

0
推荐指数
1
解决办法
1150
查看次数

禁用浏览器位置提示

好吧所以我今晚一直在玩html5 地理位置,我想知道有没有办法禁止浏览器提示用户选择他们可能/或可能不想让我的网站跟踪它们?因为我需要跟踪它们以获得准确的时区,以及类似的东西,但如果用户要拒绝该网站找到它们,我现在会有时区,州,城市,拉链等......我猜我正在寻找更多的黑客!jQuery代码:

  jQuery("#btnInit").click(initiate_watchlocation);  
  jQuery("#btnStop").click(stop_watchlocation); 

  var watchProcess = null; 

  function handle_errors(error)  
        {  
            switch(error.code)  
            {  
                case error.PERMISSION_DENIED: alert("Yo");  
                break;  

                case error.POSITION_UNAVAILABLE: alert("could not detect current position");  
                break;  

                case error.TIMEOUT: alert("");  
                break;  

                default: alert("unknown error");  
                break;  
            }  
        } 

function initiate_watchlocation() {  
    if (watchProcess == null) {  
        watchProcess = navigator.geolocation.watchPosition(handle_geolocation_query, handle_errors);  
    }  
}  

function stop_watchlocation() {  
    if (watchProcess != null)  
    {  
        navigator.geolocation.clearWatch(watchProcess);  
        watchProcess = null;  
    }  
}

function handle_geolocation_query(position) {  
    var text = "Latitude: "  + position.coords.latitude  + "<br/>" +  
               "Longitude: " …
Run Code Online (Sandbox Code Playgroud)

browser html5 geolocation

-2
推荐指数
1
解决办法
3227
查看次数