| 
<?
 // Require the library
 require ("convert.php");
 
 
 // Load Class
 $html = new html;
 
 
 // Your Arabic Text goes here , you can passit via form parameter
 
 $Text = "العربية هنا ";
 
 
 
 // converting the arabic text to english and pass the result again to $Text2
 $Text2 = $html -> do_convertlang($Text);
 
 
 
 
 
 // display the result in to user screen
 
 echo "
 <table align=center width=300 bgcolor=gray>
 <br><br>
 Arabic Text is :
 $Text
 <br><br>
 
 </table>
 <br><br>
 ";
 
 
 echo "
 
 <table align=center width=300 bgcolor=gray>
 <br><br>
 Converted Text is :
 $Text2
 <br><br>
 </table>
 
 
 
 
 ";
 
 
 
 
 
 echo "
 <br><br>
 <table align=center>
 <br><br><b>
 This script created by AlNadabi.com
 <br><br>
 </table>
 
 
 
 
 ";
 
 
 
 
 
 
 
 
 
 
 
 |