Well let me explain, its pretty simple.
I have a small database called 'news' with one table called 'ticker'.
In the table 'ticker' i have 3 fields ( id, date (VARCHAR so its just plain text) and title) en 3 rows.
My table looks like:
id date (VARCHAR) title (VARCHAR)
1 11/11/1111 test test 1
2 12/28/2010 test test 2
3 25/11/2010 test test 3
I know how to read/print it with php and that works just as i want it.
I just need to know how i can update it with a php/html form, for example i want to change 'test test 3' in 'hello world' or what ever with a php/html form.
I looked at several tutorials but most are not what i am looking for, to complicated with user id's and login sessions etc, i dont need all that.
I found one that is looking something what i need but that one doesn't work for me: http://www.freewebmasterhelp.com/tutorials/phpmysql/7
At least i cant get it to work.
|