View Single Post
Old 06-30-2011, 04:27 AM  
Soteko
Registered User
 
Join Date: Aug 2002
Posts: 37
Code:
	

$sString = 'a:1:{s:10:"formfield1";s:17:"www.domain.com";}';
	
$sTemp = explode(":", $sString);
$iLastIndex = count($sTemp)-1;
	
$sDomain = str_replace( array('"', ';', '}'), "", $sTemp[$iLastIndex]);
echo $sDomain;
Soteko is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote