i have the following code
$var="first field%second field%third field%fourth field";
$fields=explode ("%",$var);
is there any way to 'escape' the "%" character so is not taken as a separator? i mean, any way to do something like this:
$var="first field%'a field with the % character'%third field";
thanks;