Ankord Development Group English Russian
Ankord Development Group
News
14.08.2007
PHP Expert Editor 4.2
has been released.
New in version 4.2

04.05.2007
Expert Debugger 3.1
has been released.
Now PHP 5.2.x supported.

05.04.2007
zxChart 2.1
has been released.

Read more...

07.11.2006
PHP Expert Editor 4.1
has been released.

New features in new version

Expert Debugger 3.0
has been released.

23.09.2006
PHP Expert Editor 4.0 build 4
has been released.
PHP Macros format has been changed. Please read note

04.08.2006
PHP Expert Editor 4.0 version
has been released.
Release note.

18.06.2006
PHP Expert Editor 4.0 beta version
has been updated.

30.03.2006
PHP Expert Editor 4.0 beta
has been released.
New features in new version.

01.07.2005
PHP Expert Editor 3.3
has been released.
Release note

Expert Debugger 2.0
has been released.
Read more about Expert Debugger...

12.03.2005
zxChart 2.0
has been released.
Release note

05.01.2005
Web Chart Creator 3.0
has been released.


Subscribe to our mailing list to be notified as soon as this site is updated.
e-mail:
Home Download F.A.Q. Registration Feedback
New PHP Macros format

New PHP Macros format

The format of PHP Macros has been changed.

This modification has solved problems with using a big file.

Input parameters:

$_POST['FileName']The name of the FILE
$_POST['FileSaved']1 - File is SAVED; 0 - File is NOT SAVED
$_POST['Text']TEXT
$_POST['CurX']Cursor position. CHAR POSITION
$_POST['CurY']Cursor position. LINE POSITION
$_POST['SelectedText']SELECTED TEXT
$_POST['SelStart']START position of Selected text
$_POST['SelLength']LENGTH of Selected text
$_POST['TextCoding']Text CODING (ANSI, UTF-8)
$_POST['TextFormat']Text FORMAT (WIN, Unix, Mac)

As you can see the array $_SERVER has been changed to $_POST.

Parameters which control a text selection has been changed too. Now uses only two parameters - $_POST['SelStart'] and $_POST['SelLength'].

Has added new parameters $_POST['TextCoding'] and $_POST['TextFormat'].

Recommendation to adapt Your macros to new format:

  1. Replace the string $_SERVER to $_POST
  2. If Your macros selects a text then You must change a algorithm to text select and use parameters
    $_POST['SelStart'] - Start position of Selected text.
    $_POST['SelLength'] - Length of Selected text.