aboutsummaryrefslogtreecommitdiff
path: root/files/ar/glossary/php/index.html
blob: 158a3223ae37531b24fe9bd4d43ffb40bef2a339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
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>