Prob with Select output
-
Hi. I’m running CataBlog 1.6.6, CataBlogOrdering 1.3 and CataBlogOrdering.class.php Version 2.
I added a couple of Select statements to the Store template to allow the user to select product colors and I’m having a prob with extra characters in the key-names in $post_vars (in AddToCart()). I was wondering if you had any suggestions?
I’ve tryed explicitly declaring a unicode font in the Select statement, with no success. See var_dumps below.
<select name='basecolor' id='BaseColor' style='font-family: Arial Unicode MS,Arial,Helvetica;font-weight:normal;'>
and
<select name='secondarycolor' id='2ndColor' style='font-family: Arial Unicode MS,Arial,Helvetica;font-weight:normal;'>
var_dump($post_vars) output:
array(9) { ... ["amount"]=> string(5) "30.00" ["a€?basecolora€3"]=> string(11) "18-Scorpian" ["a€?secondarycolora€3"]=> string(14) "11-Golden Fizz" ["quantity"]=> string(1) "1" ... }
var_dump($item_info) output:
array(7) { ... ["quantity"]=> string(1) "1" ["basecolor"]=> NULL ["secondarycolor"]=> NULL ["amount"]=> string(5) "30.00" ... }
- The topic ‘Prob with Select output’ is closed to new replies.