<?php
$content = "name@example.com";
// with this values the link text will be replaced by 'example', otherwise set $args = array();
$args = array( 'alt_linktext' => 'example', 'opt_linktext' => 1 );
echo (function_exists('encryptx'))? encryptx($content, $args) : $content;
?>
|