Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: rakeshou
  • Content: Threads
  • Order by date
  1. rakeshou

    script sourcing issue.

    I have a script say abc.sh which needs to be executed by another script as . ../abc.sh but the control never returns to the calling script. The control does come back if I use ../abc.sh but then abc.sh is run as child script. Please tell me how do I bring the control back to the calling...
  2. rakeshou

    Perl Regular Expression help

    I need to extract the name of the file open_a.pl from the URL like: http://localhost/cgi-bin/open_a.pl?group_id=41 Thank you
  3. rakeshou

    Common header and footer using HTML::Template

    Hello all, I am using HTML::Template to separate the design from logic. As of now I am using html header and footer in all template pages as under: Code: <div id="header"> <h1><a id="bigtext" title="Go to home page" href="home.pl">TITLE</a></h1> <div id="links"> <text2 id="text2">Logged in as...
  4. rakeshou

    perl regular exp prevent cross site scripting

    Hi gurus, What can be the perl regular expression that replaces the <script></sript> tags and anything between them with blank space currently I am doing soemthing like this, $comments =~ s!<script||javascript||vbscript||(../)||</script>!!ig; but this just removes the <script tags Thank you
  5. rakeshou

    passing right value to the function

    I have a function that receives the integer values : void link::add(int val) { node1 *q,*temp; q = new node1; if(node==NULL) { node = new node1; node->data=val; node->next=NULL; } else { q=node; while(q->next != NULL) { q = q->next...
  6. rakeshou

    Winsock - create a thread and assign a port number to it.

    Hello all, I have a clientA program that connects to the server. What i need is to create a thread in the clientA call it clientB which has a different port. The clientA sends the IP address and Port number of the clientB to the server, and the server sends the Message "Hello" to the clientB...
  7. rakeshou

    storing data in session variable

    I want to store the username and login_id in the session . i am tryin to do this. $session = $q->cookie(-name=>$session->name,-value=>$session->id); #session cookie $session{"username"} = $q->param("$usernameVar"); $session{"login_id"} =...
  8. rakeshou

    relating a folder and files under it with a logged in user.

    Hi all, I am working on an online system where when the user logs on to the system a session is created, they view their folders and their uploaded files under a folder. I am using query strings to display the list of files in a particular folder. but the problem is, any one can change the...
  9. rakeshou

    uploading file on a different server than the webserver

    Hi all, Well we want to let the users uplaod files from their machines but the problem is that the files to be uploadded should go to another server (file server, for security reasons). i have tried uploading the files on the same server and it works fine but have no clue how to upload files...

Part and Inventory Search

Back
Top