Guest User

Untitled

a guest
Jul 6th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function valor(){
  2. <?php
  3. $con_string = "host='ip' port=numero dbname='banco' user='usuario' password='***'";
  4. $conn = pg_connect($con_string);
  5. $query="SELECT tubeteira from velocidadereal";
  6. $output=pg_query($conn,$query);
  7. $retorna = pg_fetch_array($output);
  8. $valor = $retorna["tubeteira"];
  9. ?>
  10. return <?php echo $valor ?>;
  11. }
  12.  
  13. setInterval(valor,1000);
Add Comment
Please, Sign In to add comment