Hi,
In my newsscript, every post gets a unique id (a number) and now I want to make it so that this number is saved in a variable, so that people can enter a url:
http://www.blah.com/blah.php?id=1
now this is my first problem: it seems that it is not possible to start the content of a variable with a number.
$q = mysql_query("SELECT * FROM $table WHERE id = ");
This is my second problem: I don't know what I should enter in id, I tried '".$id."' but this isn't working, I only see a white screen (probably because of the first problem)
Help is much appreciated!