OK here is what I have and I am getting a parse error on line 13. And another question, how do I insert the data in with this new design. Please bear with me, I am trying to learn as I go.
thanks again
<?
$server = "**";
$userid = "";
$pass = "";
$database = "**";
$con = mysql_connect("$server","$userid","$pass") or die ("Huh? What Server");
$db = mysql_select_db("$database",$con) or die("I said WHAT database");
$sql = "select * from cards where pack_id = $id";
$qry = mysql_query($sql) or die(mysql_error));
while ($row = mysql_fetch_object($qry)) {
echo "<img src=". $row->image . "/">;
}
?>