الكلمات الدليلية 'PHP'

شرح كيفية إنشاء صب دومين و حساب ftp من خلال الـ php

Posted by admin on ديسمبر 14 2009 Add Comments

السلام عليكم ورحمة الله وبركاته
اقدم لكم اليوم طريقة انشاء صب دومين subdomain و حساب ftp من خلال كود برمجى php
ودون الدخول الى لوحة التحكم ال cpanel
فلنبدأ بالكود:

كود PHP:

$cpanel['sitename'] = ‘yoursitename.com’;
$cpanel['port'] = ‘2082′;
$cpanel['username'] = ‘username’;
$cpanel['password'] = ‘123456′;
$cpanel['skin'] = ‘x3′;

هنا وضع بيانات لوحة التحكم الخاصة بموقعك CPanel
$cpanel['sitename'] = إسم موقعك
$cpanel['port'] [...]

إسكربت إدارة الإعلانات المجانى

Posted by admin on ديسمبر 11 2009 Add Comments

اقدم لكم اسكربت ادارة الاعانات النصية والبنرية للعملاء …

لتجربة الإسكربت: http://www.expbuilder.com/testpages/ads/index.php
لتجربة صفحة الادمن :
[hidethis]
http://www.expbuilder.com/testpages/…?administrator
إسم المستخدم: admin
كلمة المرور: exptestadmin
[/hidethis]
التحميل:
الاسكربت مجانى ( مقدم مجانى من expbuilder.com )
النسخة 1.1.0
للتحميل: http://www.ziddu.com/download/7260621/Ads.zip.html
النسخة 1.2.0
للتحميل: [...]

How to Install PHP on Windows XP

Posted by admin on ديسمبر 11 2009 Add Comments

Installing PHP on Windows XP

Go to your desktop and in the folder you initially created find file called php-5.2.3-Win32.zip.
Extract the content of this file to C:\webserver\php. Pull out all of the files from the php-5.2.3-Win32 folder and place them directly in C:\webserver\php.
Now we need to add our C:\webserver\php folder to the path of the Environment [...]

How to execute PHP with cron

Posted by admin on ديسمبر 11 2009 Add Comments

How to execute PHP with cron
Every now and then you will run across a task that needs to be executed through PHP however this task cannot or should not be ran by a visitor opening a webpage (such as a maintanance or caching script). The only way to run these scripts would be to do [...]

Looping Statements in PHP

Posted by admin on ديسمبر 11 2009 Add Comments

In programming it is often required to repeat a block of code for a given number of times or until a certain condition is not true. For this, we use looping statements. PHP has two major looping statements (FOR and WHILE).
In common practice, FOR loop is mostly used when we need to loop a code [...]