I have a variable I want to pass to a cgi script. Then have the cgi script process the variable and return it for use in a javascript. Can this be done?
Thanks in advance;
Doug
example:
recheight = 7;
recheight = recheight + 2.75;
this returns 72.75 NOT 9.75!!!!!!!!!!!!!!!!!!
recheight was read in from a cookie----see below.
var the_cookie = document.cookie;
var the_cookie = unescape(the_cookie);
var broken_cookie = the_cookie.split(":");
var recheight =...
I would like to do something like this:
drop down 1:Choices
drop down 2:Choices based on choices from drop down 1
drop down 3:Choices based on choices from drop down 2
drop down 4:Choices based on choices from drop down 3
drop down 5:Choices based on choices from drop down 4
Etc...
I have a mysql web database that I import a text file into everyday. How can I automate this process? I currently use the "load data infile" statement to import the txt file and this works great. I am using linux redhat. I know I can use "cron" to schedule and run tasks...
How do I check to see if the results of a query are "empty"? On the command line it is easy, but from within a cgi script?
Thanks in advance.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.