Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.8.0
- * @ Author : DeZender
- * @ Release on : 25.09.2017
- * @ Official site : http://DeZender.Net
- *
- */
- defined( 'BASEPATH' ) || exit( 'No direct script access allowed' );
- if (!(function_exists( 'form_open' ))) {
- function form_open($action = '', $attributes = array( ), $hidden = array( ))
- {
- $CI = &get_instance( );
- if (!($action)) {
- $action = $CI->config->site_url( $CI->uri->uri_string( ) );
- }
- else if (strpos( $action, '://' ) === false) {
- $action = $CI->config->site_url( $action );
- }
- $attributes = _attributes_to_string( $attributes );
- if (stripos( $attributes, 'method=' ) === false) {
- $attributes .= ' method="post"';
- }
- if (stripos( $attributes, 'accept-charset=' ) === false) {
- $attributes .= ' accept-charset="' . strtolower( config_item( 'charset' ) ) . '"';
- }
- $form = '<form action="' . $action . '"' . $attributes . '>' . "\n";
- if (is_array( $hidden )) {
- ............................................................
- .........................
- .....
Advertisement
Add Comment
Please, Sign In to add comment