12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
$_POST['action'] = 'translate';
|
|
$_POST['text'] = 'Laptop';
|
|
$_POST['target'] = 'ar';
|
|
|
|
// Capture output
|
|
ob_start();
|
|
include __DIR__ . '/index.php';
|
|
$output = ob_get_clean();
|
|
|
|
echo $output;
|