Hi, Just read this, and wanted some clarification, as I believe I've been using this in places.
> + You cannot use a named parameter marker of the same > name twice in a prepared > + statement. $param = 'a'; $stmt = $pdo->prepare('SELECT :param = :param') $stmt->bindParam(':param', $param, PDO:PARAM_STR); $stmt->execute(); Is not guarenteed to be supported? Jared