I have 2 major issues currently with javascript.
1. Doesnt anybody do any server side javascript anymore. I cant find
anything on the net about it. My major issue is with database connections
and queries. How do I set up a connection and send a quiery. any how-tos,
links, sample code, advice whatever.
2. i fave a form that is dynamicly creating elements and I am trying to
pass it to a server side script. How do I do this. The number of elements
will be different everytime. 1 field will be the same every time and that
will be the number of elements I am passing. so the url will look
something like this
a.html?number=" + number +"&element0= "+ document.forms[0].elements
[0].value
or
a.html?number=" + number +"&element0= "+ document.forms[0].elements
[0].value +"&element1= "+ document.forms[0].elements[1].value
etc.
3. this.location.r eplace(send); I am trying to use this as a redirect,
why doesnt it work? I call it when the submit button on the form is hit
and the form figures out which elements have been chosen. any ideas
1. Doesnt anybody do any server side javascript anymore. I cant find
anything on the net about it. My major issue is with database connections
and queries. How do I set up a connection and send a quiery. any how-tos,
links, sample code, advice whatever.
2. i fave a form that is dynamicly creating elements and I am trying to
pass it to a server side script. How do I do this. The number of elements
will be different everytime. 1 field will be the same every time and that
will be the number of elements I am passing. so the url will look
something like this
a.html?number=" + number +"&element0= "+ document.forms[0].elements
[0].value
or
a.html?number=" + number +"&element0= "+ document.forms[0].elements
[0].value +"&element1= "+ document.forms[0].elements[1].value
etc.
3. this.location.r eplace(send); I am trying to use this as a redirect,
why doesnt it work? I call it when the submit button on the form is hit
and the form figures out which elements have been chosen. any ideas
Comment