A few questions:
user_id|name|conflict_id|date_seen
Would user_id be the same as the value number in the form?
Also, what would be the value of conflict_id?
<input type=hidden name="id" value="<?php print($id);?>">
Is this $id the $id pulled from my table containing the information already posted?
Also, I have include files to connect to my database, etc.
Here is my dbconnect.php file:
<?
include("include/config.php");
$db = mysql_connect("$dbserver", "$dbuser", "$dbpass");
mysql_select_db("$dbname",$db);
?>
Here is my config.php file:
<?
$dbname = "name";
$dbserver = "server";
$dbuser = "user";
$dbpass = "pass";
$table = "memos"
?>
To add reference to the "user" table, can I just add $table2 = "user" to the config.php file and then reference it in the view.php file?