كنت اريد تنفيذ هذا الــ Integration Instructions ولكنى لم استطيع
عفوا انا ضعيف جدا فى لغة ال php
------------------------
هذه المعلومات بالشرح
-----------------------
كود PHP:
1.  Before calling any script, put the line below to call the 'config.php' file. This will load all the necessary database connection, class declaration files and css control. This include must plug in at the top because calling session start. 

<?php include_once("config.php"?> 
<?php include_once($path["docroot"]."common/session.php"); ?> 
<?php include_once($path["docroot"]."common/css.php"); ?>  

2.  Next, to display your form in the content area, use the line below. 
<?php $form_id=[ID]; include("formdesign/home.form.php"?> 

[ID] is the Form ID that you need to pass to indicate which form that you are calling. To get the ID, you can login to your One Admin area, go to Manage Form > List Form, Click To Get Code at the Inclusion Code. 
 
3.  For sample integration code, please refer to the source code of this file. To do this, open the file with your text editor.  

4.  Finally, as an additional tip, you can put your front-end file in any location you like, but put the call to the One Admin folder using the relative path. 
 Example, if your front-end file is at   http://yourdomain.com/orderquote.php and the One Admin folder is located at   http://yourdomain.com/oneadmin/ , use the code below. 

 <?php include_once("oneadmin/config.php"?>  
 <?php include_once($path["docroot"]."common/session.php"?>  
 <?php include_once($path["docroot"]."common/css.php"?>  
 <?php $form_id=[ID]; include("oneadmin/formdesign/home.form.php"?>