I have this code:
Code: Select all
<?php phpfmg_checkboxes( 'field_4', "Rush my order (+$30)|I need a design (+$20)|Vectorize my artwork (+$25)" );?>Moderator: General Moderators
Code: Select all
<?php phpfmg_checkboxes( 'field_4', "Rush my order (+$30)|I need a design (+$20)|Vectorize my artwork (+$25)" );?>I don't understand that, but in any case, use the escape character \ in front of the character you do not want interpreted.dddmx3 wrote:But it added the single quotes..r
No, I don't understand what you are saying. What is "it" and what quotes are you referring to? Where are you seeing single quotes that "it" changed??dddmx3 wrote:You don't understand what?
Why it added the quotes?
Code: Select all
..."Rush my order (+$30)|I...Code: Select all
..."Rush my order (+'$'30)|I...Code: Select all
<?php phpfmg_checkboxes( 'field_4', '"Rush my order (+$30)|I need a design (+$25)|Vectorize my artwork (+$20)"' );?>