[b]Pastebin.php[/b]
[url=http://aiids.pastebin.com/10UmGg9A]http://aiids.pastebin.com/10UmGg9A[/url]

[b]Voorbeeld[/b]
<?php
include_once 'Pastebin.php';

$pastebin = new Com_Wordpress_Aiids_Util_Pastebin(
	file_get_contents('Pastebin.php'), //paste_code
	'php', //paste_format
	'Stijn', //paste_name
	'stijnleenknegt@gmail.com', //paste_email
	'aiids', //paste_subdomain
	Com_Wordpress_Aiids_Util_Pastebin::PBLC, //paste_private
	Com_Wordpress_Aiids_Util_Pastebin::NEVER); //paste_expire_date
$pastebin->post();
echo '<script src="' . $pastebin->getEmbeddedJsURL() . '"></script>';
?>