I have a javascript program that writes to the following file name in my cgi-bin...
$csvfilename = "$ENV{'DOCUMENT_ROOT'}/cgi-bin/fitness/orders/orders.csv";
which defines where the orders.csv file is located, but
how can this line be modified to cause the script to also
write to another orders.csv file in another cgi-bin
location?
Seems like it should be very simple.
$csvfilename = "$ENV{'DOCUMENT_ROOT'}/cgi-bin/fitness/orders/orders.csv";
which defines where the orders.csv file is located, but
how can this line be modified to cause the script to also
write to another orders.csv file in another cgi-bin
location?
Seems like it should be very simple.