This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* WP1 | |
* To Dos | |
* | |
* * sending comments needs to add current author data along with the comment data and thus register authorA ? on B along with the comment ? | |
* * send comment to a post on B from a post on A | |
* * send comment to a post on B from a comment on a post on A | |
* * parse url in post / comment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Curl Helper | |
* @author Jigar Vyas | |
*/ | |
class Curl { | |
private $ch = null; | |
private $result = null; |