• A piece of information

    People in Palestine are trapped inside a Wall. “We are human beings, just like you, with a sense of humour, and lust for life”.The text on the image is inside the wall. No Photoshop. gefunden auf: http://flowplayer.org/tools/release-notes/

  • 15 CakePHP Tipps

    nuts and bolts hat eine Liste mit einigen Tipps zu CakePHP zusammengestellt. zu den Cake Tipps

  • URL splitten

    function process_url( $url ) { $processed_url = parse_url( $url ); $query_string = $processed_url[ 'query' ]; $query_string = explode( '&', $query_string ); $args = array( ); // return array foreach( $query_string as $chunk ) { $chunk = explode( '=', $chunk ); if ( count( $chunk ) == 2 ) { list( $key, $val ) = $chunk; [...]