<?xml version="1.0" encoding="iso-8859-1"?>
    <functions>
      <group name="StringzZ">
        <function name="substr" returnType="string" since="PHP 3">
          <para name="string" type="string" description="type in here the string u wanna take a part of" />
          <para name="start" type="int" description="determines the begining of the string u want" />
          <para name="length" type="int" description="the length of the string u want" />
        </function>
        <function name="str_rot13" returnType="string" since="PHP 4">
          <para name="str" type="string" description="type in here the string u wanna apply rot13 on..." />
        </function>
        <function name="md5" returnType="string" since="PHP 3">
          <para name="str" type="string" description="type in here the string u wanna calculate its MD5..." />
        </function>
       <function name="strtolower" returnType="string" since="PHP 3">
          <para name="str" type="string" description="type in here the string u wanna lower..." />
        </function>
       <function name="strtoupper" returnType="string" since="PHP 3">
          <para name="str" type="string" description="type in here the string u wanna upper..." />
        </function>
       <function name="strrev" returnType="string" since="PHP 3">
          <para name="str" type="string" description="type in here the string u wanna upper..." />
        </function>
      </group>
      <group name="MySQL">
        <function name="mysql_connect" returnType="resource " since="PHP 3" disabled="true">
          <para name="server" type="string" description="db server" />
          <para name="username" type="string" description="db username" />
          <para name="password" type="string" description="db password" />
          <para name="new_link" type="bool" description="i donk know.." />
          <para name="client_flags" type="int" description="still don't know!" />
        </function>
        <function name="mysql_query" returnType="string" since="PHP 3" disabled="true">
          <para name="query" type="string" description="type in here query string to be executed" />
          <para name="link_identifier" type="resource" description="the link identifier of the connection on which you wanna execute this" />
        </function>
      </group>
      <group name="URL">
        <function name="base64_decode" returnType="string" since="PHP 3">
          <para name="encoded_data" type="string" description="the encoded string to decode" />
        </function>
        <function name="base64_encode" returnType="string" since="PHP 3">
          <para name="data" type="string" description="the data string to encode" />
        </function>
        <function name="urlencode" returnType="string" since="PHP 3">
          <para name="str" type="string" description="the data string to encode" />
        </function>
        <function name="urldecode" returnType="string" since="PHP 3">
          <para name="str" type="string" description="the encoded string to decode" />
        </function>
      </group>
    </functions>

