追踪社交链接股票&每个帖子显示它们

时间:2017-12-03 21:16:18

标签: javascript php mysql ajax

我真的不想在这里问,但我正在努力解决我面临的问题。

我添加了社交链接到我的博客,该链接将用户重定向到各种社交媒体网站,并自动分享相关帖子:

  <div class="social-container">
    <p>SHARE</p>
    <div class="social-choice">
      <a href="http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&t=<?php the_title(); ?>" target="blank"><div class="fb-share"></div></a>
      <a href="http://twitter.com/share?text=<?php the_title(); ?>&url=<?php the_permalink();?>" target="blank"><div class="tw-share"></div></a>
      <a href="https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink(); ?>&title=<?php the_title(); ?>&summary=&source=" target="blank"><div class="li-share"></div></a>
      <a href="mailto:?subject=<?php the_title(); ?>&amp;body=Check out this Post from PrintingHub <?php the_permalink(); ?>." target="blank"><div class="em-share"></div></a>
    </div>
  </div>

然后显示如下:

Post output on the index.php page

我想要理想的做法是打开与MySQL数据库的连接,并在每次点击其中一个共享链接时存储一个整数值,然后在上面图像上的日期旁边显示该值。

当然,每个帖子都会对此进行跟踪。

我感觉PHP,JavaScript和&amp ;; AJAX将是最好的解决方案,但我无法完全理解它。我已尝试过这个网站的一些解决方案,还有一些其他方面还没有运气。

我一定错过了什么。非常感谢任何帮助。

0 个答案:

没有答案