PHP Classes

File: examples/pages/example2/juststrings.php

Recommend this page to a friend!
  Classes of Igor Crevar   icI18n   examples/pages/example2/juststrings.php   Download  
File: examples/pages/example2/juststrings.php
Role: Example script
Content type: text/plain
Description: test
Class: icI18n
Get application text translations from XML files
Author: By
Last change:
Date: 13 years ago
Size: 611 bytes
 

Contents

Class file image Download
<?php
function printDetails(){
echo
__('My contact info');
echo
'<br />';
echo
__('if you have any questions write email to', 'user');
echo
' : <b>crewce at gmail.com</b>';
echo
'<br />';
echo
__('My Name is', 'user');
echo
' : <b>Igor Crevar</b>';
echo
'<br />';
echo
__('My Blog URL is', 'user');
echo
' : <b><a href="http://www.extrafull.com/igorcrevar/" target="_blank">http://www.extrafull.com/igorcrevar/</a></b>';
echo
'<br />';
echo
__('I will be happy if someone actually use this.');
echo
' :) ';
echo
'<br />';
echo
__('If you do, please sent me an email or post a comment on blog');
echo
'<br />';
}