Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy. This forum is not for asking programming related questions.
I wanted to create something simple, I already made a base, but I'm not sure it would fit with what I need help with.
I was thinking something like this: You can type in a name and it will display information that people wrote about that person. And you can have the option to add a paragraph or whatever about that person. I know php somewhat, but I'm not good with MySql.
$database = new DatabaseHandler();
$database->Query("SELECT `name`,`city` FROM `userinfo` WHERE `identity`='$userID'");
foreach ($database->Rows as $item)
{
echo "$item <br>";
}
Where of course $database is an instance of DatabaseHandler - a class that handles database queries and tidies away unsightly mysql_connect statements etc.