PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Im having a few problmes when it comes to updating my data, once i have entered the data i wish to update and click submit it does not submit the data from taskdesc or nextstep!
I think this may have something to do with the fact that both of these fields are textareas in my form any ideas?
Couple of things...
Try echoing the SQL command your page creates. This frequently shows the problem (could be a quote in the text for instance. Try copying this information directly into the database and examine any error messages. This should help you.
2nd MAJOR problem.
Do you perform any validation of the text. Never trust data sent through POST or GET without validating it first. (Look up SQL Injection to see why).