Home / Questions / Other PHP while loop कैसे लिखते हैं? में error आए तो solution क्या है? Other 0 Views Verified PHP while loop कैसे लिखते हैं? में error आए तो solution क्या है? सही विकल्प चुनें और code/solution को समझें। #php #core php #php programming #php tutorial #php error #php solution #backend #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified loop while ($count < 10) loop while ($count < 10) Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified while ($count < 10); {} while ($count < 10); {} Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified while $count < 10: while $count < 10: Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer while ($count < 10) { $count++; } while ($count < 10) { $count++; } Additional Explanation while condition true रहने तक चलता है। पहले exact error message, line number और input value check करें।