Home / Questions / Other PHP GET query parameter कैसे पढ़ते हैं? इसका सही PHP syntax क्या है? Other 0 Views Verified PHP GET query parameter कैसे पढ़ते हैं? इसका सही PHP syntax क्या है? सही विकल्प चुनें और 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 $id = query('id'); $id = query('id'); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified $id = $_QUERY['id']; $id = $_QUERY['id']; Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified $id = GET['id']; $id = GET['id']; Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer $id = $_GET['id'] ?? null; $id = $_GET['id'] ?? null; Additional Explanation $_GET URL query parameters देता है।