This request does not work. In phpmyadmin , the request itself gives the result, the table is updated, but when I run the php-скрипт does not want to work. Although there are no mistakes. I think this one is due to the brackets. Or what?
$id = $_GET['id']; $title = strip_tags(trim($_POST['title'])); $text = strip_tags(trim($_POST['text'])); $author = strip_tags(trim($_POST['author'])); mysql_query(" UPDATE users SET title=$title, text='$text', author='$author' WHERE id='$id' ");