You should
not write your code in all lowercase letters. It makes it extremely hard to follow your code.
SQL is especially hard to read when all lowercase.
Here's a few pointers:
Make the "keywords" all caps.
$sql = "SELECT user_id,body, stamp FROM posts
WHERE user_id in ($user_string)
ORDER BY stamp DESC $extra";
Use backticks (``) around your column and table names.
$sql = "SELECT `user_id`,`body`, `stamp` FROM `posts`
WHERE `user_id` in ($user_string)
ORDER BY `stamp` DESC $extra";
Create new lines after every column name, to make it easier to make out what data you're actually fetching.
$sql = "SELECT
`user_id`,
`body`,
`stamp`
FROM `posts`
WHERE
`user_id` in ($user_string)
ORDER BY [syntax=php]
`stamp` DESC $extra";[/syntax]
You also need to put semiquotes ( ' ' ) around your strings. The only time you can ignore the quotes is when you're dealing with integer values. Strings always need quotes around them.
$sql = "SELECT
`user_id`,
`body`,
`stamp`
FROM
`posts`
WHERE
`user_id` in ('$user_string')
ORDER BY
`stamp` DESC '$extra'";
See how much easier it is to read with only a few tab indentations and a couple of new lines?
It makes it MUCH easier to spot typos and other errors when all your code is easily readable like this.
/Edit; I just now saw that $user_string is in fact not a string, but an integer, so you don't have to put quotes around it.
I would however suggest changing the name of that variable. You never want to call a variable "string" when it isn't. Call it something with ID in it to make it instantly obvious what the variable is for.