Hi every1,
I am new to php... From the image that i have attached you can see what i basically need... In view users.php v can see who r all the users.. and clicking on that particular user,.it has to display that particular users details.
eg: when we click user1 ---> user1 details has to be displayed.
When we click user2 --- > user2 details has to displayed...
what i have now is
$query = "SELECT company_name, c_name, c_pass,c_email FROM company_creator";
$result = mysql_query($query);
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo "Company Name :{$row['company_name']} <br>" .
"name : {$row['c_name']} <br>" .
"password : {$row['c_pass']} <br>".
"Emial : {$row['c_email']} <br><br>";
}
if i click either user1 or user 2 i can see all the users details....
PLs help..
thanks :)
Tryphy