php-classes-in-hindi

Introduction to PHP Classes Class एक object oriented programming feature है। इसके द्वारा आप किसी data और उस पर perform होने वाले operations को एक साथ bind करते है। Class में data properties (variables) के द्वारा represent किया जाता है। Data पर perform होने वाले operations class में function द्वारा represent किये जाते है। Class c language … Read more

php-functions-in-hindi

Introduction to PHP Functions यदि आपके program में कोई ऐसा task है जिसे आपको बार बार execute करने की जरुरत है तो आप उस task के लिए program में अलग अलग जगह पर code लिखने की बजाय एक function create कर सकते है और जब भी आपको उस task को perform करने की आवश्यकता हो तो … Read more

php-print-in-hindi

Introduction to PHP print PHP में output display करने के लिए echo और print को use किया जाता है। PHP echo की ही तरह print भी एक language construct है। यह कोई function नहीं है। PHP print output display करने का एक traditional तरीका है। यदि आप c language से familiar है तो print आपको ज्यादा appropriate … Read more

php-control-statements-in-hindi

Introduction to Control Statements Control statement आपके program के execution को control करते है। Control statements program में logic build करने के लिए यूज़ किये जाते है। Logic के द्वारा आप decide करते है कोनसे statement आप execute करना चाहते है और कोनसे statements को आप छोड़ना चाहते है या कौनसे statements को आप एक … Read more

php-operators-in-hindi

Introduction to Operators Variables के साथ operations जैसे की addition, division, comparison आदि perform करने के लिए operators का प्रयोग किया जाता है। जब आप किसी variable के साथ operator को यूज़ करते है तो वो variable operand कहलाता है। Operators 2 तरह के होते है। Unary Binary Unary operators एक single variable के साथ यूज़ … Read more

php-echo-in-hindi

Introduction to PHP echo PHP में echo एक language construct है। कई बार echo को function के रूप में misjudge कर लिया जाता है। लेकिन यह एक function नहीं है। यह एक special tool है जिसे PHP की core functionality में hard code किया गया है। यदि programmer की दृष्टि से देखा जाए तो language … Read more

php-constants-in-hindi

Introduction to PHP Constants PHP में variables के अलावा आप constants में भी data store कर सकते है। Constants variables की तरह ही होते है लेकिन इनकी value को change नहीं किया जा सकता है। कई बार आपको ऐसे data को store करने की आवश्यकता होती है जिसे change नहीं किया जा सके। उदाहरण के लिए … Read more

php-variables-in-hindi

Introduction to PHP Variables Variables किसी information को store करने के लिए यूज़ किये जाते है। ये information कुछ भी हो सकती है जैसे किसी व्यक्ति का मोबाइल नंबर या उनका पता। Variables किसी भी programming language के सबसे छोटे और powerful element होते है। जब भी आप कोई variable create करते है तो PHP उस variable … Read more

php-data-types-in-hindi

Introduction to PHP Data Types आप किस तरह की information किसी variable में store करना चाहते है ये आप data types के द्वारा define करते है। जैसे की आप कोई संख्या store करना चाहते है या फिर character store करना चाहते ये आप data types के माध्यम से compiler को दर्शाते है। PHP में 8 तरह … Read more

php-command-line-interpreter-in-hindi

Introduction to PHP Command-Line Interpreter अभी तक आप PHP code को web browser और server के साथ execute करना सिख चुके है। इस प्रकार के execution में पहले PHP code server पर execute होता है और उसके बाद output browser में show किया जाता है। लेकिन PHP code को execute करने का सिर्फ यही एकमात्र तरीका नहीं है। … Read more