Home / Questions / Other PDO named parameter execute कैसे करते हैं? में developers की common mistake क्या है? Other 0 Views Verified PDO named parameter execute कैसे करते हैं? में developers की common mistake क्या है? सही विकल्प चुनें और 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 Correct Answer $stmt->execute([':id' => $id]); $stmt->execute([':id' => $id]); Additional Explanation execute() named placeholder values bind कर सकता है।
Verified $stmt->run(['id'=>$id]); $stmt->run(['id'=>$id]); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified $stmt->execute_params(...); $stmt->execute_params(...); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified $stmt->params(...); $stmt->params(...); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।