Hi,
I'm just writing my first test PHP site to help myself get some basics down. Now, on one of my pages, I have an HTML textbox and a submit button. The goal is to have this textbox populated from my database when the page loads, then the user can change the text however they want, hit submit, and the database is updated. The latter parts are working fine - I can submit some content and it will remove the old content, replacing it with the new. However, I can't seem to move data the other way. ie I can pull text from the textbox, but not write to it. Can I even do this with PHP at all, or do I maybe need to use Javascript? I tried searching but couldn't find anything.
Thanks.