Just working on a small University project to develop an e-commerce website. I have been provided some code and I am altering this to my needs.
I currently have a problem with getting some arrays to work within an option and select tag. The difference being each of these arrays has an action associated with it eg, moving onto another page.
The problem seems to be this action is not being used within the option tags. As seen here http://mkiddr.com/phptests/shopping/
Here is my original code before editing:
<body>
<div id="wrapper">
<div id="header">
<p><a href="index.php">Home</a> | Browse:
<?php
$q="SELECT c_id, c_name FROM sc_cat";
$result = mysqli_query($_SESSION['conn'],$q);
while ($row = mysqli_fetch_row($result)){
echo "<a href='category.php?id=$row[0]'>$row[1]</a> ";
}
unset($q); //unset query variable
mysqli_free_result($result); //free result
?>
</div>
<div id="content"><!-- note this is an opening tag -->
Here is my code edited (doesn't work)
<body>
<div id="wrapper">
<div id="header">
<p><a href="index.php">Home</a> | Browse:
<select>
<?php
$q="SELECT CategoryID, CategoryName FROM ProductCategories";
$result = mysqli_query($_SESSION['conn'],$q);
while ($row = mysqli_fetch_row($result)){
echo "<option value='category.php?id=".$row[0]."'>".$row[1]."</a></option>";
//display categories
}
unset($q); //unset query variable
mysqli_free_result($result); //free result
?>
</select>
</div>
<div id="content"><!-- note this is an opening tag -->
Would really appreciate if someone could give us a hand with this!
</a>before</option>. – Barmar Mar 6 at 13:29http://mkiddr.com/phptests/shopping/category.php?id=1 or 1=1. I could have easily run something like thishttp://mkiddr.com/phptests/shopping/category.php?id=1;DROP TABLE ProductCategories;--and ruined all your hard work. See bobby-tables.com – Kevin Brydon Mar 6 at 13:34