Project

General

Profile

1
<?php
2
 /**
3
  * QuickSkin Extension urlencode
4
  * Inserts URL-encoded String
5
  *
6
  * Usage Example:
7
  * Content:  $template->assign('PARAM', 'Delete User!');
8
  * Template: go.php?param={urlencode:PARAM}
9
  * Result:   go.php?param=Delete+User%21
10
  *
11
  * @author Andy Prevost andy@codeworxtech.com - original by Philipp v. Criegern philipp@criegern.de
12
  */
13
  function qx_urlencode ( $param ) {
14
    return urlencode( $param );
15
  }
16

    
17
?>
(39-39/40)