I have the following INSERT command in my code, what I'd like to do is get the ID it is assigned below it.
So:
$add_story_rs = $conn->Execute ( "INSERT INTO story(story_content, story_date) VALUES('" . $_POST['story_content'] . "', NOW())" ) or die ( $conn->ErrorMsg() );
$story_id = $ID; // This is where I'd like to get the ID for the story just added