XenForo
Administrative
- Thread starter
- Admin
- #1
Hi guys,
I'm trying to achieve the following -
A widget that literally just displays the follower count for my twitter handle.
I've found the following code, but no idea where to call the .PHP file in order to display this.
Code:
Read more
ادامه مطلب...
I'm trying to achieve the following -
A widget that literally just displays the follower count for my twitter handle.
I've found the following code, but no idea where to call the .PHP file in order to display this.
Code:
Code:
<?php
$twitterid = "globinch";
$stringVal="";
$url="http://twitter.com/users/show.xml?screen_name=";
$url= $url. $twitterid;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL...
Read more
ادامه مطلب...