First PHP Program
Your First PHP Program PHP एक बहुत ही simple scripting language है। यदि आपने C language पढ़ी हुई है तो आप आसानी से PHP …
Your First PHP Program PHP एक बहुत ही simple scripting language है। यदि आपने C language पढ़ी हुई है तो आप आसानी से PHP …
Introduction to PHP Hypertext Preprocessor HTML एक बहुत ही आसान और उपयोगी language है। HTML के द्वारा आप web pages …
Introduction to PHP Abstract Classes PHP5 में abstract classes और methods को introduce किया गया है। Abstract classes और …
Introduction to PHP Classes Class एक object oriented programming feature है। इसके द्वारा आप किसी data और उस पर perform …
Introduction to PHP Constructor Constructor एक function होता है जो class के अंदर declare किया जाता है। जब भी class का …
Introduction to Control Statements Control statement आपके program के execution को control करते है। Control statements …
Introduction to PHP Cookies Cookies पुराने यूज़र को identify करने के लिए यूज़ की जाती है। Cookie एक छोटी सी file होती …
Introduction to PHP Data Types आप किस तरह की information किसी variable में store करना चाहते है ये आप data types के …
Introduction to PHP Database Handling अपनी web application का data किसी database में save करना सबसे appropriate रहता है। …
Introduction to PHP echo PHP में echo एक language construct है। कई बार echo को function के रूप में misjudge कर लिया जाता …
Introduction to PHP Email Sending PHP आपको कई महत्वपूर्ण features provide करती है। PHP का एक ऐसा ही महत्वपूर्ण feature …
Introduction to PHP Errors जब भी आपके code में कोई error आती है तो PHP उसे एक report की तरह show करती है। जितनी भी …
Introduction to PHP File Handling ज्यादातर सभी languages files के साथ काम कर सकती है। PHP भी ऐसे कुछ functions provide …
Introduction to PHP File Uploading PHP आपको server पर files upload करने की ability provide करती है। PHP के द्वारा आप एक …
Introduction to PHP Filters लगभग सभी web applications बाहरी input पर निर्भर होती है। एक web application बाहरी input कई …
Introduction to PHP Form Handling चाहे कोई नयी email id create करनी हो या किसी exam का online form भरना हो आप HTML forms …
Introduction to PHP Functions यदि आपके program में कोई ऐसा task है जिसे आपको बार बार execute करने की जरुरत है तो आप उस …
PHP include Statement PHP में आप किसी एक file में दूसरी file को include कर सकते है। यदि आप कोई ऐसी functionality …
Introduction to PHP Inheritance Inheritance एक object oriented programming feature है। जिस प्रकार एक संतान अपने माता …
Introduction to PHP Interfaces एक interface द्वारा आप ऐसे methods की list specify कर सकते है जिन्हें एक class द्वारा …
Introduction to PHP Iterators जैसा की आपको पता है PHP में arrays objects है। आप for each लूप का प्रयोग करते हुए array के …
Introduction to PHP MySQLi MySQL databases को handle करने के लिए PHP में नया MySQL extension add किया गया है। इस …
Introduction to PHP Namespaces Namespaces एक तरह के डेटा को एक साथ bind करने के लिए यूज़ किये जाते है। साथ ही ये same …
Introduction to Operators Variables के साथ operations जैसे की addition, division, comparison आदि perform करने के लिए …
Introduction to PHP print PHP में output display करने के लिए echo और print को use किया जाता है। PHP echo की ही तरह print …
Introduction to PHP print_r() Function PHP में print_r() function किसी भी variable के बारे में human readable …
Introduction to PHP Properties PHP में class member variables को properties कहा जाता है। हालाँकि इन्हें attributes और …
Introduction to PHP References PHP में references का अहम role होता है। References को अलग अलग purposes के लिए program में …
Introduction to PHP Sessions Sessions का बहुत ही सिंपल concept होता है। उदाहरण के लिए आप किसी cyber cafe पर web surfing …
Introduction to PHP Strings जब बहुत से characters को एक साथ sequence में लिखा जाता है तो वे एक string का निर्माण करते …
Introduction to PHP Tags जब PHP किसी HTML फाइल को parse करती है तो parser (ये interpreter का part होता है और PHP code को …
Introduction to PHP Variables Variables किसी information को store करने के लिए यूज़ किये जाते है। ये information कुछ भी …
Introduction to PHP Visibility किसी भी web application का secure होना अति आवश्यक होता है। यदि आपकी web application …