Skip to content

Commit d6e5daa

Browse files
committed
init commit
1 parent 2c13ea8 commit d6e5daa

22 files changed

+1758
-0
lines changed

.htaccess

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
php_value display_errors 1
2+
php_flag log_errors on
3+
php_value error_log /var/www/speedtest/php.error.log

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# SpeedTest-php
22
a speedtest php site
3+
4+
## [Website](https:/speedtest.yehudae.ga)

assets/logo-a.png

15.5 KB
Loading

assets/logo-b.png

15.4 KB
Loading

assets/logo-w.png

15.5 KB
Loading

config.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
$site_name = 'Internet Speed Test | בדיקת מהירות אינטרנט';
4+
$site_descr = 'Check the speed of your Internet connection | בדוק מה המהירות אינטרנט שלך';
5+
$copyrights = 'Yehuda Eisenberg © 2020';
6+
$website_url = 'https://speedtest.yehudae.ga/';
7+
8+
?>

contact.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<html>
2+
<?php require_once ('inc/head.php')?>
3+
<body>
4+
<?php require_once ('inc/menu.php')?>
5+
<div class="container">
6+
<div class="pages">
7+
<h1>Contact Us | צור קשר</h1>
8+
<span dir="rtl" style="float:right;">זקוק לעזרה? צור קשר דרך <a href="mailto:[email protected]?subject=speed-test">[email protected]</a></span>
9+
<span>Need help? contact in <a href="mailto:[email protected]?subject=speed-test">[email protected]</a></span>
10+
</div>
11+
</div>
12+
<?php require_once ('inc/footer.php')?>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)