Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~564 People Reached
Favorite Tags
Member Avatar for meisterluv

Hi everyone I was wondering if I could get some help on environment variables. I am executing a cgi file from a C file with execv(). The cgi is able to generate the html template correctly. However I am unable to grab the "REQUEST_METHOD" since it always returns NULL. Can …

0
56
Member Avatar for meisterluv

i'm trying run a cgi script from a c program using execve(). It seems to be able to open and run the cgi file. but instead of actually generating graphical html it generates html code. example: execve("this.cgi", NULL, NULL) will generate: [CODE] /this.cgi /this.cgi <html> . . . the rest …

Member Avatar for gerard4143
0
237
Member Avatar for meisterluv

Can someone explain to me why I get this error when i have one radio button in the array with a length size of one and i = 0? [CODE]]document.radioForm.Radio[i] is undefined Line 25[/CODE] Here's the code [CODE] ln = document.radioForm.Radio.length if(isNaN(ln)){ ln = 1 } alert(ln) for(i=0; i<ln; i++){ …

Member Avatar for Airshow
0
67
Member Avatar for meisterluv

I'm having troubles understanding global variables in python. I am trying to keep track of when a function gets called and once it does I want it to be unavailable to the user. However for some reason its not working :\ [CODE] psycStat = False def main(): form = cgi.FieldStorage() …

Member Avatar for slate
0
204