aboutsummaryrefslogtreecommitdiff
path: root/files/ar/glossary/php
diff options
context:
space:
mode:
authorRyan Johnson <rjohnson@mozilla.com>2021-04-29 16:16:42 -0700
committerGitHub <noreply@github.com>2021-04-29 16:16:42 -0700
commit95aca4b4d8fa62815d4bd412fff1a364f842814a (patch)
tree5e57661720fe9058d5c7db637e764800b50f9060 /files/ar/glossary/php
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/ar/glossary/php')
-rw-r--r--files/ar/glossary/php/index.html49
1 files changed, 0 insertions, 49 deletions
diff --git a/files/ar/glossary/php/index.html b/files/ar/glossary/php/index.html
deleted file mode 100644
index 158a3223ae..0000000000
--- a/files/ar/glossary/php/index.html
+++ /dev/null
@@ -1,49 +0,0 @@
----
-title: PHP
-slug: Glossary/PHP
-tags:
- - PHP
- - المعجم
-translation_of: Glossary/PHP
----
-<p class="simple-translate-result" dir="rtl" style="color: rgb(0, 0, 0);">تعد لغة PHP بدائية متكررة (PHP: Hypertext Preprocessor) لغة برمجة نصية من جانب الخادم مفتوحة المصدر (open-source server-side scripting language) يمكن تضمينها في HTML لإنشاء تطبيقات الويب والمواقع الديناميكية.</p>
-
-<h2 dir="rtl" id="أمثلة">أمثلة</h2>
-
-<h3 dir="rtl" id="بناء_الجملة_الأساسية">بناء الجملة الأساسية</h3>
-
-<pre class="brush: php"> // start of PHP code
-&lt;?php
- // PHP code goes here
- ?&gt;
-// end of PHP code</pre>
-
-<h3 dir="rtl" id="طباعة_البيانات_على_الشاشة">طباعة البيانات على الشاشة</h3>
-
-<pre class="brush: php">&lt;?php
- echo "Hello World!";
-?&gt;</pre>
-
-<h3 dir="rtl" id="متغيرات_PHP">متغيرات PHP</h3>
-
-<pre class="brush: php">​​​​​​​​​​​​​​&lt;?php
- // variables
- $nome='Danilo';
- $sobrenome='Santos';
- $pais='Brasil';
- $email='danilocarsan@gmailcom';
-​​​​​​​
- // printing the variables
- echo $nome;
- echo $sobrenome;
- echo $pais;
- echo $email;
-?&gt;</pre>
-
-<h2 dir="rtl" id="أعرف_أكثر">أعرف أكثر</h2>
-
-<ul>
- <li><a href="http://php.net/">الموقع الرسمي</a></li>
- <li>{{Interwiki("wikipedia", "PHP")}} على ويكيبيديا</li>
- <li><a href="https://en.wikibooks.org/wiki/PHP_Programming">PHP</a> on Wikibooks</li>
-</ul>