document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. // Ini adalah script pada server-side yaitu send-ajax-data.php
  3.  
  4. // Mengatur tipe konten
  5. header(\'Content-Type: text/plain\');
  6.  
  7. // Mengirimkan data ke klien
  8. echo "This is the output.";
  9. ?>
');