I have taken over updating our php system for customers after a collegue has left and we where using outdated php/apache software to run the system.
I am now trying to bring it more upto date and in line with current PHP standards.
He also didnt comment any of the code so i am kinda working in the dark (aha)
I am currently having issues with the following code.
Code: Select all
<input type="hidden" name="worksheet_id" value="<?php echo $worksheet["id"] ?>">
<input type="hidden" name="Estcomplete" value="<?php echo $worksheet["EstComplete"] ?>">
<input type="submit" name="updateworksheet" value="Update" onClick="javascript:checkCertificate()">
Code: Select all
Add Job Note:<br><textarea name="jobnotes_notes" rows="4" cols="69"></textarea><br>
<input type="hidden" name="worksheet_id" value="<?php echo $worksheet["id"]; ?>">
<input type="submit" name="updatejobnotes" value="Add" onClick="javascript:checkCertificate();">
</form>
this was working under the older apache/php software but has no broken as i am slowly upgrading the system.
Thanks in advance for your help