Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $stmt = $pdo->prepare('SELECT cidade FROM cidade WHERE estado=:UF ORDER BY nome');
- $stmt->bindParam(":UF", $id_categoria);
- $stmt->execute();
- $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
- echo(json_encode($rows));
Advertisement
Add Comment
Please, Sign In to add comment