Add Different Resource for EmpireCMS

Sometimes it is very difficult for us to publish an article if all the articles have 2 or more different article resources from other sites. In this case, we can not copy directly. We can use PHP code:

How to remove the title attribute using dreamweaver?

Here are some html code: <A title=”mens glasses” href=”http://www.cheapglasses123.com/men-glasses”>Men’s Glasses</A> <A title=”womens glasses” href=”http://www.cheapglasses123.com/women-glasses”>Women’s Glasses</A> <A title=”kids glasses” href=”http://www.cheapglasses123.com/kids-glasses”>Kids Glasses</A> If we do not need title attribute in these href code, and let them be:

explode and foreach to show strings or ASCII

//transfer ASCII to string $string = “78b101b116b87b105b110b100”; $tags = explode(‘b’, $string);  foreach($tags as $key) { echo chr($key);  } //transfer string toASCII echo “<br><br>”; $string = “Tiger Young”; foreach($tags as $key) { echo ord($key).”b”;  } echo “<br><br>”;