php-print-r-function-in-hindi

Introduction to PHP print_r() Function PHP में print_r() function किसी भी variable के बारे में human readable information प्राप्त करने के लिए use किया जाता है। यह function string, arrays और objects आदि को argument के रूप में लेता है और उनके बारे आसानी से समझने योग्य information provide करता है। यह function मुख्यतः debugging के … Read more

php-email-sending-in-hindi

Introduction to PHP Email Sending PHP आपको कई महत्वपूर्ण features provide करती है। PHP का एक ऐसा ही महत्वपूर्ण feature ये है की आप PHP के द्वारा emails भी send कर सकते है। Email customers से interact करने का एक सरल और प्रभावशाली माध्यम है। Email के द्वारा brands और organizations किसी customer से personally connect रहते है। … Read more

php-file-uploading-in-hindi

Introduction to PHP File Uploading PHP आपको server पर files upload करने की ability provide करती है। PHP के द्वारा आप एक या एक से अधिक files upload कर सकते है। PHP के द्वारा आप केवल text file ही नहीं बल्कि binary file जैसे की कोई image आदि भी upload कर सकते है। PHP आपको … Read more

php-filters-in-hindi

Introduction to PHP Filters लगभग सभी web applications बाहरी input पर निर्भर होती है। एक web application बाहरी input कई प्रकार से ले सकती है जैसे की User द्वारा input किया गया data (through forms), Web services का data, Cookies का data, Database से query किया गया data आदि। बाहरी input का source कोई भी हो लेकिन … Read more

php-mysqli-in-hindi

Introduction to PHP MySQLi MySQL databases को handle करने के लिए PHP में नया MySQL extension add किया गया है। इस extension का नाम MySQL improved extension है। इसे shorter form में MySQLi extension भी कहा जाता है। MySQLi extension को PHP version 5.5.0 में MySQL extension के अलावा optionally introduce किया गया था। लेकिन PHP version 7 से इसे पूरी … Read more

php-database-handling-mysql-in-hindi

Introduction to PHP Database Handling अपनी web application का data किसी database में save करना सबसे appropriate रहता है। Database में आपका data secure रहता है। किसी भी database में data normalized form में रहता है। Database चाहे कितना ही बड़ा क्यों ना हो उसमे आप data को बहुत fast access कर सकते है। PHP … Read more

php-form-handling-in-hindi

Introduction to PHP Form Handling चाहे कोई नयी email id create करनी हो या किसी exam का online form भरना हो आप HTML forms के द्वारा ही अपनी information पास करते है। किसी भी web page पर user से data input लेने का माध्यम forms होते है। Forms की मदद से user required information fill करता है … Read more

php-errors-in-hindi

Introduction to PHP Errors जब भी आपके code में कोई error आती है तो PHP उसे एक report की तरह show करती है। जितनी भी errors PHP शो करती है वो किसी ना किसी type की होती है। ये सभी types PHP में constants के द्वारा represent किये गए है और इन सभी की value … Read more

php-references-in-hindi

Introduction to PHP References PHP में references का अहम role होता है। References को अलग अलग purposes के लिए program में यूज़ कर सकते है। ये pointers की तरह नहीं होते है। उदाहरण के लिए निचे दिए हुए program को देखिये। <?php $a =& $b; $a = “Indian”; echo $a;  //It will print Indian echo $b; … Read more

php-generators-in-hindi

Introduction to PHP Iterators जैसा की आपको पता है PHP में arrays objects है। आप for each लूप का प्रयोग करते हुए array के सभी elements को print करवाते है। उसी प्रकार आप for each loop में किसी class का object भी पास कर सकते है और उस class को iterate कर सकते है। <?php … Read more