Creating a simple system.
Posted: Thu Aug 28, 2008 1:28 am
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.
I did something SUPER basic.
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.
I did something SUPER basic.
Code: Select all
<?php
$username = $_POST['username'];
if ($username == "example") {
echo "information about this user";
} else {
echo "No user was found";
}
?>