diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/ar/glossary/php | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-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.html | 49 |
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 -<?php - // PHP code goes here - ?> -// end of PHP code</pre> - -<h3 dir="rtl" id="طباعة_البيانات_على_الشاشة">طباعة البيانات على الشاشة</h3> - -<pre class="brush: php"><?php - echo "Hello World!"; -?></pre> - -<h3 dir="rtl" id="متغيرات_PHP">متغيرات PHP</h3> - -<pre class="brush: php"><?php - // variables - $nome='Danilo'; - $sobrenome='Santos'; - $pais='Brasil'; - $email='danilocarsan@gmailcom'; - - // printing the variables - echo $nome; - echo $sobrenome; - echo $pais; - echo $email; -?></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> |