Title: JSON encoding
Last modified: July 15, 2017

---

# JSON encoding

 *  [marekseda](https://wordpress.org/support/users/marekseda/)
 * (@marekseda)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/json-encoding/)
 * Hi,
 * please add JSON_UNESCAPED_UNICODE in next version. Without JSON_UNESCAPED_UNICODE
   is bad encoding in czech language.
 * Please change the function:
 *     ```
       function cf7msm_set($var_name, $var_value) {
       	if ( empty( $_COOKIE['cf7msm_check'] ) ) {
       		$_SESSION[$var_name] = $var_value;
       	}
       	else {
       		setcookie($var_name, json_encode( $var_value ), 0, COOKIEPATH, COOKIE_DOMAIN);
       	}
       }
       ```
   
 * to:
 *     ```
       function cf7msm_set($var_name, $var_value) {
       	if ( empty( $_COOKIE['cf7msm_check'] ) ) {
       		$_SESSION[$var_name] = $var_value;
       	}
       	else {
       		setcookie($var_name, json_encode( $var_value,  JSON_UNESCAPED_UNICODE), 0, COOKIEPATH, COOKIE_DOMAIN);
       	}
       }
       ```
   
 * Thank you very much
    Regards Marek S.

Viewing 1 replies (of 1 total)

 *  Plugin Author [webheadcoder](https://wordpress.org/support/users/webheadllc/)
 * (@webheadllc)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/json-encoding/#post-9323752)
 * ok will add this to the next version. thanks!

Viewing 1 replies (of 1 total)

The topic ‘JSON encoding’ is closed to new replies.

 * ![](https://ps.w.org/contact-form-7-multi-step-module/assets/icon-256x256.png?
   rev=1793363)
 * [Contact Form 7 Multi-Step Forms](https://wordpress.org/plugins/contact-form-7-multi-step-module/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contact-form-7-multi-step-module/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contact-form-7-multi-step-module/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-form-7-multi-step-module/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-form-7-multi-step-module/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-form-7-multi-step-module/reviews/)

## Tags

 * [encoding](https://wordpress.org/support/topic-tag/encoding/)

 * 1 reply
 * 2 participants
 * Last reply from: [webheadcoder](https://wordpress.org/support/users/webheadllc/)
 * Last activity: [8 years, 10 months ago](https://wordpress.org/support/topic/json-encoding/#post-9323752)
 * Status: not resolved