php-html-kya-hai-in-hindi

Introduction to PHP & HTML पिछली tutorial में आपने जो PHP page create किया उसमें पूर्णता PHP language का ही प्रयोग किया गया था। जैसा की आपने देखा केवल PHP का ही प्रयोग करके आप interactive web pages create कर सकते है। लेकिन यह आवश्यक नहीं है की आप केवल PHP code द्वारा ही web pages create करें। PHP की एक … Read more

php-first-programin-in-hindi

Your First PHP Program PHP एक बहुत ही simple scripting language है। यदि आपने C language पढ़ी हुई है तो आप आसानी से PHP में web applications create कर सकते है। अब तक आप PHP के tags के बारे में जान चुके है। आइये अब PHP में एक simplest program बनाने का और उसे समझने … Read more

php-tags-in-hindi

Introduction to PHP Tags जब किसी PHP file को parse किया जाता है तो parser (ये interpreter का part होता है और PHP code को अलग अलग हिस्सों में तोड़ता है ताकि पता लग सके की कौनसा हिस्सा tag है और कौनसा actual data है।)  opening और closing tags को search करता है। Parser वही कोड parse करता है … Read more

php-installation-in-hindi

HTML webpage को execute करने के लिए किसी भी प्रकार के special software की आवश्यकता नहीं होती है। आप simply HTML code लिखते है और उसे .html extension के साथ save करते है। इसके बाद जैसे ही उस file को open करते है तो आपका code execute हो जाता है और web page के रूप में … Read more

php-introduction-in-hindi

Introduction to PHP Hypertext Preprocessor HTML एक बहुत ही आसान और उपयोगी language है। HTML के द्वारा आप web pages design करते है। HTML के साथ CSS के उपयोग से आप webpages को और भी beautiful बनाते है। लेकिन HTML सिर्फ webpages के structure और designing तक ही सिमित है। ऐसे कई tasks है जो HTML द्वारा … Read more

html-new-input-attributes-in-hindi

Introduction to HTML5 New Input Attributes नए input types के अलावा HTML5 में कुछ नए input attributes भी introduce किये गए है। Input attributes वह attributes होते है जो <input> tag के साथ use किये जाते है। अभी तक HTML में निचे दिए गए input attributes available थे। value readonly disabled size maxlength HTML5 में introduce … Read more

html-new-input-types-in-hindi

Introduction to HTML5 Input Types Input types user से input प्राप्त करने के लिए use किये जाते है। Input types को <form> element के अंदर define किया जाता है। अब तक आप कई प्रकार के input types जैसे की text, radio, button, checkbox आदि use कर चुके है जो क्रमशः textboxes, radio buttons, buttons और checkboxes आदि create … Read more

html-output-tag-in-hindi

Introduction to HTML5 <output> Tag आपने कई बार ऐसी sites देखी होगी जो किसी प्रकार की calculation perform करती और result show करती है। जैसे की site जो calculator की application provide करती है, site जो binary को decimal में convert करने की service provide करती है, site जो नाप (Feet, Centi Meter) को convert … Read more

html-datalist-tag-in-hindi

Introduction to HTML5 <datalist> Tag किसी <input> element में predefined options define करने के लिए HTML5 आपको <datalist> tag provide करती है। <datalist> tag input elements के लिए autocomplete feature की तरह काम करता है। इससे input तेजी से प्राप्त करने में मदद मिलती है और user experience भी improve होता है। उदाहरण के लिए जब आप Google … Read more