I appoligize, i didnt mean to come off as a freeloader.
So my first confusion is does it have to be like the script I used to enter the information in to the DB where I have 2 different files. Form.php and add.php, im sure any of you know what im referring to.
Assuming that is the case, what I tried was using those except modifying form by taking out some fields and adding a dropdown and then in the add changing it from a INSERT into UPDATE, hence why it will look unfinished. Now, obviously as you will see nothing happens when i click the submit button. Actually it looks as if it works fine, no errors but as I said it changes nothing. So here is what i am using.
Form
<html>
<form id="form1" name="Update" method="post" action="addtest.php">
<select name='dropdown' id='dropdown'>
<?php
$con = mysql_connect("localhost", "username", "password");
if (!$con)
{
die('Could not connect to DB: ' . mysql_error() );
}
mysql_select_db ("dbname", $con);
$query = "SELECT ID, Title from movies";
$result = mysql_query($query) OR DIE ("There was an error" .mysql_error());
while($row=mysql_fetch_array($result))
{
echo " <option value=\"{$row['ID']}\">{$row['Title']}</option>";
}
php?>
</select>
</select>
<select name='dropdown' id='dropdown'>
<?php
$con = mysql_connect("localhost", "username", "password");
if (!$con)
{
die('Could not connect to DB: ' . mysql_error() );
}
mysql_select_db ("dbname", $con);
$query = "SELECT ID, Category from categories";
$result = mysql_query($query) OR DIE ("There was an error" .mysql_error());
while($row=mysql_fetch_array($result))
{
echo " <option value=\"{$row['ID']}\">{$row['Category']}</option>";
}
php?>
</select>
<input name="Submit" type="Submit" value="send" />
</form>
</html>
and the Add
<?php
$con = mysql_connect("localhost", "username", "password");
if (!$con)
{
die('Could not connect to DB: ' . mysql_error() );
}
mysql_select_db ("dbname", $con);
$sql="UPDATE movies SET Category
VALUES ('$_POST[dropdown]')";
if (!mysql_query($sql,$con))
{
die ('Error: ' . mysql_error());
}
echo "<a href=\"form.php\">Record Updated. Click here for another</a>";
I know its not pretty. but i am hoping i am atlest kind of close ??