Adding extra php parameters for sql -
so im making mini webpage has 8 links, 4 males , 4 females in each has 2 pants , 2 pants. ive made 5 php pages , scripted them, males shirts , pants not work. know can make them work? ill post teedetails.php page code , listoftees.php page code since both pants pages samething. teedetails: <?php $selection = $_get["id"]; mysql_connect("localhost", "root", ""); mysql_select_db("clothesshop"); $sql = "select * tshirts tid=$selection;"; $result = mysql_query($sql); $row = mysql_fetch_array($result); ?> <!doctype html> <html> <head> <link rel="stylesheet" href="boilerplate.css"> <link rel="stylesheet" href="teedetails.css"> <meta charset="utf-8"> <meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0"> </head> <bo...