# Bad comment example # get characters 5-14 of DIALED into $y $y = substr($DIALED,4,10); # Good comment example # Extract the destination phone number from the dialed # digits field. # Skip over the speed dial digits. $dest_phone = substr($DIALED,4,10);