rodolpheg

Untitled

Feb 23rd, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. $db = new PDO("pgsql:host=localhost; dbname=gmq717", "postgres", "gmq717");
  3. $variable = $_GET['var'];
  4. $sql = 'SELECT ' . $variable . ' FROM montreal_postgis';
  5. $query = $db->query($sql);
  6. while ($row = $query->fetch()) {
  7. echo json_encode($row);
  8. };
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment