sidglas

Untitled

May 29th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $stmt = $pdo->prepare('SELECT cidade FROM cidade WHERE estado=:UF ORDER BY nome');
  2. $stmt->bindParam(":UF", $id_categoria);
  3. $stmt->execute();
  4. $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
  5. echo(json_encode($rows));
Advertisement
Add Comment
Please, Sign In to add comment