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