[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Info.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Arabic Countries Information</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <link rel="stylesheet" type="text/css" href="style.css" media="all" /> </head> <body> <div class="Paragraph"> <h2 dir="ltr">SimpleXML Example Output:</h2> <?php /** * Example of Arabic Countries Information * * @category I18N * @package I18N_Arabic * @author Khaled Al-Sham'aa <khaled@ar-php.org> * @copyright 2006-2016 Khaled Al-Sham'aa * * @license LGPL <http://www.gnu.org/licenses/lgpl.txt> * @link http://www.ar-php.org */ error_reporting(E_STRICT); $time_start = microtime(true); // set name of XML file $file = '../data/arab_countries.xml'; // load XML file $xml = simplexml_load_file($file) or die ('Unable to load XML file!'); if ($_GET['lang'] == 'arabic') { $lang = 'arabic'; $dir = 'rtl'; echo '<a href="Info.php?lang=english">English</a>'; } else { $lang = 'english'; $dir = 'ltr'; echo '<a href="Info.php?lang=arabic">Arabic</a>'; } echo '<table width="98%" cellpadding="5" cellspacing="2" dir="'.$dir.'">'; echo '<tr>'; echo '<td><b><u>Country</u></b></td>'; echo '<td><b><u>Capital</u></b></td>'; echo '<td><b><u>Time Zone</u></b></td>'; echo '<td><b><u>Time</u></b></td>'; echo '<td><b><u>Currency</u></b></td>'; echo '<td><b><u>Local Domain</u></b></td>'; echo '<td><b><u>Dial Codes</u></b></td>'; echo '</tr>'; // iterate over <country> element collection foreach ($xml as $country) { echo ($i++ % 2)? '<tr bgcolor="#F5F5F5">' : '<tr bgcolor="#E5E5E5">'; echo '<td><a href="../images/flags/'.$country->name->english.'.svg" target="_blank">'.$country->name->$lang.'</a>'; echo ' ('.$country->longname->$lang.')</td>'; $lat = substr($country->capital->latitude, 0, -3); if(substr($country->capital->latitude, -1) == 'S') $lat = -1 * $lat; $lon = substr($country->capital->longitude, 0, -3); if(substr($country->capital->latitude, -1) == 'W') $lon = -1 * $lon; echo '<td><a href="http://maps.google.com/maps?ll='.$lat.','.$lon.'&t=h&z=10" target="_blank">'.$country->capital->$lang.'</a></td>'; $timezone = $country->timezone; if ($country->summertime['used'] == 'true') { $start = strtotime($country->summertime->start); $end = strtotime($country->summertime->end); if (time() > $start && time() < $end) { $timezone = $timezone + 1; $timezone = '+' . $timezone; } } // convert current time to GMT based on time zone offset $gmtime = time() - (int)substr(date('O'), 0, 3)*60*60; echo '<td>'.$timezone.' GMT</td>'; echo '<td>'.date('G:i', $gmtime+$timezone*3600).'</td>'; echo '<td><a href="http://www.xe.com/ucc/convert.cgi?Amount=1&From=USD&To='.$country->currency->iso.'" target="_blank">'.$country->currency->$lang.'</a></td>'; echo '<td><a href="http://www.101domain.com/whois-'.strtolower($country->iso3166->a2).'.php" target="_blank">http://www.example.com.'.strtolower($country->iso3166->a2).'</a></td>'; echo '<td>+'.$country->dialcode.'</td>'; echo '</tr>'; } echo '</table>'; $xml = null; ?> </div><br /> <div class="Paragraph"> <h2>SimpleXML Example Code:</h2> <?php $code = <<< END <?php // set name of XML file \$file = '../data/arab_countries.xml'; // load XML file \$xml = simplexml_load_file(\$file) or die ('Unable to load XML file!'); if (\$_GET['lang'] == 'arabic') { \$lang = 'arabic'; \$dir = 'rtl'; echo '<a href="Info.php?lang=english">English</a>'; } else { \$lang = 'english'; \$dir = 'ltr'; echo '<a href="Info.php?lang=arabic">Arabic</a>'; } echo '<table width="98%" cellpadding="5" cellspacing="2" dir="'.\$dir.'">'; echo '<tr>'; echo '<td><b><u>Country</u></b></td>'; echo '<td><b><u>Capital</u></b></td>'; echo '<td><b><u>Time Zone</u></b></td>'; echo '<td><b><u>Time</u></b></td>'; echo '<td><b><u>Currency</u></b></td>'; echo '<td><b><u>Local Domain</u></b></td>'; echo '<td><b><u>Dial Codes</u></b></td>'; echo '</tr>'; // iterate over <country> element collection foreach (\$xml as \$country) { echo (\$i++ % 2)? '<tr bgcolor="#F5F5F5">' : '<tr bgcolor="#E5E5E5">'; echo '<td><a href="../images/flags/'.\$country->name->english.'.svg" target="_blank">'.\$country->name->\$lang.'</a>'; echo ' ('.\$country->longname->\$lang.')</td>'; \$lat = substr(\$country->capital->latitude, 0, -3); if(substr(\$country->capital->latitude, -1) == 'S') \$lat = -1 * \$lat; \$lon = substr(\$country->capital->longitude, 0, -3); if(substr(\$country->capital->latitude, -1) == 'W') \$lon = -1 * \$lon; echo '<td><a href="http://maps.google.com/maps?ll='.\$lat.','.\$lon.'&t=h&z=10" target="_blank">'.\$country->capital->\$lang.'</a></td>'; \$timezone = \$country->timezone; if (\$country->summertime['used'] == 'true') { \$start = strtotime(\$country->summertime->start); \$end = strtotime(\$country->summertime->end); if (time() > \$start && time() < \$end) { \$timezone = \$timezone + 1; \$timezone = '+' . \$timezone; } } // convert current time to GMT based on time zone offset \$gmtime = time() - (int)substr(date('O'),0,3)*60*60; echo '<td>'.\$timezone.' GMT</td>'; echo '<td>'.date('G:i', \$gmtime+\$timezone*3600).'</td>'; echo '<td><a href="http://www.xe.com/ucc/convert.cgi?Amount=1&From=USD&To='.\$country->currency->iso.'" target="_blank">' .\$country->currency->\$lang.'</a></td>'; echo '<td><a href="http://www.101domain.com/whois-'.strtolower(\$country->iso3166->a2).'.php" target="_blank"> http://www.example.com.'.strtolower(\$country->iso3166->a2).'</a></td>'; echo '<td>+'.\$country->dialcode.'</td>'; echo '</tr>'; } echo '</table>'; \$xml = null; END; highlight_string($code); $time_end = microtime(true); $time = $time_end - $time_start; echo "<hr />Total execution time is $time seconds<br />\n"; echo 'Amount of memory allocated to this script is ' . memory_get_usage() . ' bytes'; $included_files = get_included_files(); echo '<h4>Names of included or required files:</h4><ul>'; foreach ($included_files as $filename) { echo "<li>$filename</li>"; } echo '</ul>'; ?> </div> </body> </html>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.42 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002