Actually I just figured most of this out myself. The only hard part I had doing was the updating feature (getting it to populate the HTML form). My below code shows the simple things I did but there is no error checking (since my fields are all text).
echo(
'<form action="'.$_SERVER['PHP_SELF'].'?updatejob='.$JobID.'" method="post">
<p>Type your job description here:<br />
<textarea name="JobDesc" rows="10" cols="40" wrap>'.$rowDesc.'
</textarea><br />
<input type="submit" name="updatejob" value="SUBMIT" />
</p>
</form><br />
<form action="'.$_SERVER['PHP_SELF'].'?deletejob='.$JobID.'" method="post">
<input type="submit" name="deletejob" value="Delete" />
</p>
</form>');
That just the Update portion, for the adding you simply don't have it inject $rowDesc into the form.
As you may notice the submit sends the webpage back to itself. In the same file I have it check to see if the ?updatejob=X is in the link, if so then it run this block of code to update the database:
if (isset($_POST['updatejob'])) {
$sql = "update Jobs set JobDesc = "$jobdesc" where ID = $ID";}
Now the only thing I don't know how to do is update multi things in one line (something like update Jobs set JobDesc = "$jobdesc" where ID = $ID, obName = "$jobname" where ID = $ID).