15.12.2010, 22:56
Solucionado, soluciуn:
PHP код:
$string = "Valor=144";
$cortar = explode("Valor=",$string);
$string = $cortar[1];
echo $string;

