Usage:

This shortcode allows the injection of PHP code into a post, page, excerpt or widget.

This shortcode uses the PHP eval() language construct / function. The eval() language construct is very dangerous because it allows execution of arbitrary PHP code. Its use thus is discouraged. If you have carefully verified that there is no other option than to use this construct, pay special attention not to pass any user provided data into it without properly validating it beforehand.

This shortcode does NOT support conditional branching with [ELSE_exec].
Shortcode nesting is NOT supported.

Parameters:

None.

This shortcode doesn’t require parameters but expects PHP code (without <?php and ?>) to be placed between the start and end tags.

Do not use PHP comments inside this shortcode.

Example:

[mbr_exec]
  $a = 3;
  $b = 5;
  $c = $a + $b;
  echo $c;
[/mbr_exec]
[mbr_exec]
  @include($my_path . 'my_php_script');
[/mbr_exec]

API:

There is currently no ActiveMember360 API function equivalent for this shortcode.