16 lines
No EOL
238 B
PHP
16 lines
No EOL
238 B
PHP
<?php
|
|
|
|
include 'config.php';
|
|
|
|
$timed = date("Y-m-d h:i:sP");
|
|
|
|
$query = "
|
|
UPDATE data
|
|
SET isrespondedto = true,
|
|
responsetext = 'teeheee HHIIIIII!!!!!',
|
|
responsetime = timestamptz'{$timed}'
|
|
WHERE id = 1";
|
|
|
|
pg_query($db, $query);
|
|
|
|
?>
|