Hi, C++ is my language, but since I know some html, and I was asked to do a website for a friend, I thought I might as well take this chance to learn some PHP as well. Well I already created an application that takes the user's input and inserts it into a table called tblVendors located in a database called turbosha_Vendors. That script works fine, but now I am trying to make a script that grabs the the data from the table that has an ID field, which is set to contain an integer value and, as the primary key, it auto-increments as new rows are added, and displays it on a a webpage.
Here is the PHP code I have. Keep in mind that the database username and password were replaced with X's for security purposes.
<?PHP
$Database = mysql_connect("localhost", "XXXX", "XXXX") or die(mysql_error());
mysql_select_db("turbosha_Vendors") or die(mysql_error()); ;
$result = mysql_query("SELECT MAX(ID) as maxID FROM tblVendors")or die(mysql_error());
$row = mysql_fetch_array($result) or die(mysql_error());
$max = $row[maxID];
$result2 = mysql_query("SELECT MIN(ID) as minID FROM tblVendors")or die(mysql_error());
$row2 = mysql_fetch_array($result2) or die(mysql_error());
$min = $row2[minID];
echo "<br>";
echo "<br>";
echo "<center>";
echo "<table border=\"0\" width=\"100%\">";
echo "<th style=\"background-color:#cc0000;font-family:Verdana;color:#e8e8e8;font-size:20px\">";
echo "Vendor List";
echo "</th><tr><td><b style=\"font-family:Verdana;color:#cc0000;font-size:20px\">";
for($ID = $min;$ID != $max;$ID++)
{
$field = mysql_query("SELECT * FROM tblVendors where ID=$ID",$Database) or die(mysql_error());
$cname = mysql_result($field,1,"CompanyName");
$URL = mysql_result($field,2,"URL");
$rname = mysql_result($field,3,"RepName");
$remail = mysql_result($field,4,"RepEmail");
echo("<a href=\"$URL\">$cname</a>");
echo "<br>";
echo "<i style=\"font-family:Verdana;color:#cc0000;font-size:10px\">";
echo "-Representative's Name: ";
echo "$rname";
echo "</i>";
echo "<br>";
echo "<i style=\"font-family:Verdana;color:#cc0000;font-size:10px\">";
echo "-Representative's Email:";
echo "$remail";
echo "</i>";
echo "<br><br></center>";
}
?>
Lastly, here is the link to the page so you can see what is going wrong.
http://www.turboshack.com/vendors/list.php
Thanks in advance,
Jon