hi, what i want to do is to pass through an html form text to a mysql db, that is the first thing i want.
The other thing i want is this:
i put some text in an html form, i want that text to go to a mysql db, I want to be able to submit via the html form only 10 pieces of text, and i want that if i sent more than 10 they go for the following day and if i submit 30 they fo: 10 for the current day, other 10 for the 2nd day and 10 for the third day. And i want to print that results into a page, lets say:
the first day i submitthis things:
a
b
c
d
f
g
h
i
j
k
l
m
They are 12 things, i only want ten to be displayed, so in the site it wold be displayed:
a
b
c
d
f
g
h
i
j
k
The same day, i remember to put more and i put:
n
o
p
q
r
s
t
u
v
w
x
the page is still printing
a
b
c
d
f
g
h
i
j
k
but i want it that automatically at the other day it would put
l
m
n
o
p
q
r
s
t
u
the 2 first which i put the first and the next 8 that come, and for the third day
v
w
x
can somebody help me?