Should the following line: curl_setopt($ch2, CURLOPT_POSTFIELDS, "status=".urlencode(stripslashes(urldecode($message))).."&source=Pingfm Bridge"); Really be: curl_setopt($ch2, CURLOPT_POSTFIELDS, "status=".urlencode(stripslashes(urldecode($message)))."&source=Pingfm Bridge");
(replace ".." with "." before "&source=)
Andrew
· 1 year ago
Poojan: Yes it should be. I made a slight modification a few days ago and I must have made a typo. It's fixed now.
Source code available at http://files.microft.org/cgi-scripts/twitarmy.pl
curl_setopt($ch2, CURLOPT_POSTFIELDS, "status=".urlencode(stripslashes(urldecode($message))).."&source=Pingfm Bridge");
Really be:
curl_setopt($ch2, CURLOPT_POSTFIELDS, "status=".urlencode(stripslashes(urldecode($message)))."&source=Pingfm Bridge");
(replace ".." with "." before "&source=)