Posts: 42
Name: Jez
Location: Grand Junction, CO / Williston, ND
|
here's a link the the form in question: http://testarea.net78.net/crown/time_sheet.php
it's a constant work in process, and doesn't have any style yet. Basically, it's a time sheet that will be filled out, the input field for CREW will actually end up being a drop down menu dynamically filled by a list of available crews which will be edited by staff. (I could probably implement the function call there)
on the top of each "day" on the right, it says "A_date" that will be auto-filled with the appropriate date for that particular day of the week.
I tried doing something like this:
PHP Code:
<input type="text" name="i_week_ending" size="24" value="<?php include('mylibrary/fridays_date.php'); ?>"/>
but it's not producing the results I want yet...
<edit>
after the employees fill out their time sheets, the staff will need to be able to alter this information, so they will need to view this form with all the contents that the employee provided. each form field will need to have a value=$*** that will be pulled from the database. I think that's going to be the bugger.
Last edited by madnhain; 03-12-2011 at 10:58 PM..
|