HTML Elements in hindi

HTML Elements दोस्तों आज हम इस Post में HTML के Elements के बारे जानेगे, HTML element tag को हम <> angle brackets में लिख सकते है| तो हम जानगे की Elements क्या होते है और Elements किसे कहते है|HTML syntax में, खाश करके element को opening tag और closing tag के साथ लिखा जाता है,

Read More

Basic structure of an HTML document in hindi

HTML Document Structure तो दोस्तों इस पोस्ट में हम जानेगे HTML Document structure के बारे में सामान्य तर में हम अपने Phone, Laptop में किसी बी Website open करते है| तो सभी Website का layout अलग अलग होता है | तो इन सभी Website का जो layout होता है वह HTML के strucute पे आधारित

Read More

What are the attributes in HTML? HTML में attributes किसे कहते है?

HTML Attributs in hindi HTML के सभी Element में  attributes होते ही है,वह attributes Element  में addinational information बताते है|HTML, Element  के <opening> tag ,</closing> tag होते है तो हम इन attributes को <opening> tag में लिखते है|attributes को elements में बताने के लिए उसका   basic syntax (Name = “value”)  कुछ इस तरह होता है|

Read More

Introduction html in hindi

Introduction about HTML In Hindi हेलो दोस्तों आज हम इस पोस्ट में HTML के बारे में जानेगे की HTML कैसे काम करती है HTML से webpages कैसे बनाया जाता है। किसी बी website/webapplication बनाने में HTML का इस्तेमाल होता ही तो हम लोग one by one HTML के सरे elements उसके tags,attribute के बारे में

Read More

php switch statement example

switch statement, if statement की तरह एक conditional statement है जिसका condition के आधार पर अलग-अलग action perform करने के लिए इतेमाल किया जाता है|switch statement और if statement में काफी similiraty है लेकिन इन दोनों statement में just यह different है की switch statement में directly अपने expression statement पे jump करता है जब

Read More

php strings

php strings Strings character का sequence यानि की समूह (group) है|| string declaration string तीन तरीके से declare कर सकते है|| single quoted double quoted doc syntax nowdoc => यह single quoted की तरह काम करता है|| heredoc => यह double quoted की तरह काम करता है|| Single quoted single quoted में, string को single

Read More

PHP loops introduction

Types of loops in php while loop while loop में code का block तब-तक execute होगा जब-तक while loop में दी गई condition true होती है| while statement में condition true है तब-तक ही code execute होगा अगर while statement की condition false होगी तो while statement का code execution बंद हो जायेगा. While loop

Read More

php conditional statements

if statement इस statement में code तभी execute होगा जब if statement की condition True होगी| if statement एक conditional statement है जिसमे कई प्रकार की condition check करि जाती है|| if statement में अगर condition true होती है तभी वह if statement की body statement (code) execute होगा otherwise नहीं होगा. syntax: Example: ऊपर

Read More

php function in Hindi

php function in Hindi syntax: Example: php built-in function php built-in function का मतलब built-in function पहले से ही बने बनाये होते है और वह php की library file में लिखे होते है built-in function का इस्तेमाल करने के लिए first वह function को अपने script code में call करना होता है|| built-in function जैसे

Read More

php echo/print statement

php echo/print statement in hindi php में echo और print दोनों ही statement output को display करने के लिए इस्तेमाल होते है| echo और print statement में थोड़ी similarity और different बी है|echo statement में multiple parameter सेट कर सकते है जब की print statement में एक ही parameter रख सकता है यही echo statement,

Read More