HomeHelpTrac

source: tags/6.1/get_boonex_id.php @ 10242

Revision 10242, 1.5 KB checked in by Alexander Trofimov, 3 years ago (diff)

dolphin 6.1.5, initial commit

Line 
1<?
2
3/***************************************************************************
4*                            Dolphin Smart Community Builder
5*                              -----------------
6*     begin                : Mon Mar 23 2006
7*     copyright            : (C) 2006 BoonEx Group
8*     website              : http://www.boonex.com/
9* This file is part of Dolphin - Smart Community Builder
10*
11* Dolphin is free software. This work is licensed under a Creative Commons Attribution 3.0 License.
12* http://creativecommons.org/licenses/by/3.0/
13*
14* Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15* without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16* See the Creative Commons Attribution 3.0 License for more details.
17* You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin,
18* see license.txt file; if not, write to marketing@boonex.com
19***************************************************************************/
20
21require_once( 'inc/header.inc.php' );
22require_once( BX_DIRECTORY_PATH_INC . 'utils.inc.php' );
23
24$sUrl = 'http://www.boonex.com/unity/id/export';
25
26$sID       = process_pass_data( $_GET['ID'] );
27$sPassword = process_pass_data( $_GET['Password'] );
28
29$sRequest  = $sUrl . '?username=' . urlencode( $sID ) . '&password=' . md5( $sPassword ) . '&r=' . rand();
30
31header ('Content-Type: application/xml');
32echo file_get_contents( $sRequest );
33
34?>
Note: See TracBrowser for help on using the repository browser.