This file contains hidden or 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 | |
| namespace CommonMark; | |
| use CommonMark\Inline\Processor\YouTubeVideoProcessor; | |
| use CommonMark\Inline\Renderer\YouTubeVideoRenderer; | |
| use League\CommonMark\Converter; | |
| use League\CommonMark\Environment; | |
| use League\CommonMark\DocParser; |
This file contains hidden or 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
| /* | |
| Exemples : | |
| <a href="posts/2" data-method="delete" data-token="{{csrf_token()}}"> | |
| - Or, request confirmation in the process - | |
| <a href="posts/2" data-method="delete" data-token="{{csrf_token()}}" data-confirm="Are you sure?"> | |
| */ | |
| (function() { | |
This file contains hidden or 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 | |
| /** | |
| * @author Savaş Can ALTUN <savascanaltun@gmail.com> | |
| * www.savascanaltun.com.tr | |
| * CURL vBulletin Login Example | |
| * */ | |
| function vBulletinLogin($username,$password,$url,$posturl){ | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_HEADER,false); | |
| curl_setopt($ch, CURLOPT_COOKIEFILE, 'veri.txt'); |
NewerOlder