Ok, i got kind of pissed and all stressed took a nap haha but i went through my php mysql book again.
found. for my topic that i am trying to start a hosting company and i want to display servers in a list for the user logged in...
this is just a display script. that tells the server names and stuff. in it and such.
its not modified to what i need yet.
<?php
$user="catalog";
$host="localhost";
$password="";
$database = "PetCatalog";
$cxn = mysqli_connect($host,$user,$password,$database)
or die ("couldn't connect to Host");
$pettype = horse
$query = "SELECT * FROM Pet WHERE petType='$pettype'";
$result = mysqli_query($cxn,$query)
or die ("Couldn't execute query.");
?>
i can easily modify that to do it what i want.
but can i ask how would i match up my login system to go with the server name and display all the servers in a list...?
Example
Server Name ==== CPU ==== RAM ===== LinkSpeed ======= Operating Sys
S1 ========== corei7 ==== 16gb ===== 2000mbit ======= windows 7 x64
S2 ========== corei7 ==== 16gb ===== 1000mbit ======= windows 7 x32
S3 ========== corei7 ==== 16gb ===== 2000mbit ======= windows 7 x64
S4 ========== corei7 ==== 16gb ===== 1000mbit ======= windows 7 x32
S5 ========== corei7 ==== 16gb ===== 2000mbit ======= windows 7 x64
when its picking up the data from user Monokid and on the home page it would display the following above.
how would you do that.
oh yeah and the text includes links.
is it complicated?
can someone give me a brief preview of a sample of the code that would be used?