| 
<?php
header('Content-Type: text/html; charset=utf-8');
 
 require_once "Automated_Translation.php";
 
 $object = new Automated_Translation('AQLuJgqAJ6Rd5z88ttFEvg%3D%3D');
 $text_arrays = array('title'=>'Hello World!',
 'description' => array('short_description' => 'This is the best class to translate',
 'long_description' => 'Hello World! This is the best class to translate with SDL BeGlobal API!'));
 
 // Example to access the translate method from Automated Translation
 $result = $object->translate($text_arrays,'eng','fra');
 var_dump($result);
 ?>
 |