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

php data types

php data types in hindi Variable में अलग-अलग types के data को store (asign) कर सकते है और data types को उसके attribute के according data को कई category में classification किया जाता है| php data types lists string integer float(double) boolean array object NULL objects resource string string character का एक group होता है

Read More

PHP constants

php constants in hindi constants बी variable की तरह होता है लेकिन cosntant को एकबार define करने के बाद उसको change या फिरसे define नहीं कर सकते||variable का storage temparory है जब की constants permanednt है||constant का इस्तेमाल data के लिए होता है पुरे program script में unchangeable है||सभी constants का scope global होता है

Read More

PHP comment

What is php comment in hindi? Php में comment किया हुवा code program का part नहीं होता इस लिए वह comment किया हुवा code हमरे program के साथ execute नहीं होता है| php में comment का मतलब कुछ ऐसी information की जिसे हम जान सकते है की code किस logic के लिए लिख गया है|

Read More

PHP basic syntax

php basic syntax in hindi php script document में कही बी लिख सकते है| php script <?php के साथ start होती है और ?> के साथ end होती है||तो php का किसी प्रकार का बी code होता है वह हम php के <?php openign tag और ?> cloding tag के बीच में लिख सकते है|

Read More