I have so far done this:
$query = "SELECT * FROM skills WHERE pid=".$id;
$result = mysql_query($query) OR die(mysql_error());
while($row = mysql_fetch_array($result))
{
Now the question is:
How do I get a certain field with a certain ID. I'm going to explain this as best as possible.
I have these rows:
| id | pid | xp | level | sid
Now, I need to show all the rows with the pid that equals but one at a time by using sid. Now how would I do that?
