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
Ranked #20.4K
~2K People Reached
About Me

Started coding in the 1980s. Professionally since the early 1990s.

Interests
Filmmaking, producing, screenplays, scriptwriting, photography, editing, cosmetics formulation, skin…
Favorite Tags
Member Avatar for blackrobe

Hey, How can I terminate a server after some number of connections (don't want it to keep on running forever). I've written in it C, using the select system call, and an array to store the connections made in.. [CODE] while (1) { FD_ZERO(&rdset); FD_SET(clients[fd], &rdset); ( select(max+1, &rdset, NULL, …

Member Avatar for nezachem
0
162
Member Avatar for imb4uin

Hi can someone who knows html please help me out? I have my webpage, [url]http://users.igl.net/ash/index.html[/url] It has a javascript on it. I am trying to embed my homepage on my league site. so I write the code as follows <embed height="200" name="homepage" hidden="never" width="200" src="http://users.igl.net/ash/index.html" allowscriptaccess="true" /></embed> My homepage loads …

Member Avatar for imb4uin
-1
118
Member Avatar for Davife

As part of data entry I am checking the validity of a date field and using the onchange event to trigger the check. As you will note it also compares start and end dates, but that's not the issue. The issue is that after a bad date is detected and …

Member Avatar for Davife
0
104
Member Avatar for ErlendHL

Hey! I am making a chat program. I have a function Chat(); [code] function Chat(){ var fullMessage = document.getElementById('name').innerHTML +' '+ document.getElementById('message').value+'\n'; fullMessage = fullMessage.replace(/\'/g,"'"); fullMessage = fullMessage.replace(/\\"/g,"&quot;"); fullMessage = fullMessage.replace(/\[/g,'*lsb?'); fullMessage = fullMessage.replace(/\]/g,'*rsb?'); sendRequest('http://3rlend.com/pjattappend.php','F=allMessages.txt&D='+'fullMessage','POST',true); document.getElementById('message').value=""; } [/code] sendRequest(url,params,method,Asynch); i an AJAX function. Now when I try to execute Chat();, …

Member Avatar for ErlendHL
0
1K
Member Avatar for cpp.coder

from w3schools.com i have read this line. that http address doesn't maintain the state. can some one please explain it. thanks in advance the link from where i read this is [url]http://www.w3schools.com/php/php_sessions.asp[/url]

Member Avatar for diafol
0
220
Member Avatar for UberJoker

I am able to get the file names with current script. $dir = "var/www"; $dh = opendir($dir); while (($file = readdir($dh)) !== false) { echo "<A HREF=\"$file\">$file</A><BR>\n"; } but the www folder is local. i wanted to get the file names on my windows server which has the following address …

Member Avatar for sunsetrainbow
0
105
Member Avatar for niths
Re: php

hi i am new to php. I am having some problem. i had created a dropdown list which contains project names. and below that a table with checkbox userid,username. till tat it is working properly. after selecting the project name and one cheque box and press submit button.It should display …

Member Avatar for JRM
0
75