After the TABLE is created in the database we need to get started on the HTML input fields. Now we create a file call Inbox_compose.php you can change the name to anything you wont.
After creating the file we need to create HTML fields elements
First we need subject field: <input type='text' name='Subject' value='' />
Next create To_user field: <input type='text' name='To_user' value='' />
Third create From_user field witch is hidden: <input type='hidden' name='From_user' />
Last we create Message filed which is "TextArea input" & Submit button <textarea name='Message'></textarea>
<input type='Submit' name='Submit' value='Send' />
Here example of what it should look like, make sure to include the <Form> attribute as will.