From 95aca4b4d8fa62815d4bd412fff1a364f842814a Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 29 Apr 2021 16:16:42 -0700 Subject: remove retired locales (#699) --- files/ar/glossary/php/index.html | 49 ---------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 files/ar/glossary/php/index.html (limited to 'files/ar/glossary/php') 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 ---- -

تعد لغة PHP بدائية متكررة (PHP: Hypertext Preprocessor) لغة برمجة نصية من جانب الخادم مفتوحة المصدر (open-source server-side scripting language) يمكن تضمينها في HTML لإنشاء تطبيقات الويب والمواقع الديناميكية.

- -

أمثلة

- -

بناء الجملة الأساسية

- -
  // start of PHP code
-<?php
-     // PHP code goes here
- ?>
-// end of PHP code
- -

طباعة البيانات على الشاشة

- -
<?php
-   echo "Hello World!";
-?>
- -

متغيرات PHP

- -
​​​​​​​​​​​​​​<?php
- // variables
- $nome='Danilo';
- $sobrenome='Santos';
- $pais='Brasil';
- $email='danilocarsan@gmailcom';
-​​​​​​​
- // printing the variables
- echo $nome;
- echo $sobrenome;
- echo $pais;
- echo $email;
-?>
- -

أعرف أكثر

- - -- cgit v1.2.3-54-g00ecf