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 strongm 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: iggit
  • Order by date
  1. iggit

    Graphic Designer

    PhotoImpact from http://www.ulead.com inexpensive and powerful
  2. iggit

    Hidden Fields within a FORM

    Save yourself a major headache and use a perl script to send the mail. It will hide the receiver's email address completely removing any concern at all with bots or compliance and you can set the priority the email comes to you or the receiver based on the topic or the receiver's choice. Quite a...
  3. iggit

    CGI and File

    The code is not writing the correct value: open(OUTF,">>card1.out") or dienice("Couldn't open car.out for writing: $!"); $amount = "$16"; ## has the value print OUTF "$FORM{'amount'}\n"; ## has no value close(OUTF); should be: $amount =...
  4. iggit

    IFRAME border

    Use the frameborder=0 tag.
  5. iggit

    Vertical scroll problem

    Normally this has to do with improperly formatted content inside the textarea. Look for spurious escape characters or improper table commands.
  6. iggit

    Puzzling Question

    Have never experienced this before: A set of scripts written on an Alabanza server I use for building such things when installed on a 800hosting server provides nothing but premature end of script headers warning! all paths are correct (config single file changed) and no changes made to content...
  7. iggit

    Apache Perl

    This was posted in the CGI forum and has led to an Apache situation with perl??? Scripts that had been working just fine on both a build server and a test server are now installed on the primary box, with ExecCGI granted. Scripts work if they are cut off with an exit before doing any if/then...
  8. iggit

    Advanced redirection: from page123.cgi to page123.shtml

    Call the cgi you want displayed in the src= tag of the iframe and it will be dynamic. If you want to rotate which one is displayed you will need a script to manage which one is placed in the src= tag.
  9. iggit

    Advanced redirection: from page123.cgi to page123.shtml

    Use an iframe element. Pull them in to that box and it will display properly in this century's browsers. With iframe you can remove the outline and make it seamless.
  10. iggit

    Beats All I've Seen

    Ok here we are: Scripts that had been working just fine on both a build server and a test server are now installed on the primary box, with ExecCGI granted. Scripts work if they are cut with with an exit before doing any if/then functions. If no cut off is made the scripts never load and hang...
  11. iggit

    Includes Question (ouch)

    Makes sense (told you it wasn't my language of choice) I've also tried <img src=[script-url]> and still nothing. Any ideas for a miraculous solution? (Thank you for the response)
  12. iggit

    Includes Question (ouch)

    Have been toying with calling a perl script from a different server using this: <script language=javascript src=&quot;[script-url]&quot;></script> And it responds with nothing. So is my perl script screwed up? (it works fine by itself) or am I missing something? FYI: Javascript is NOT my...
  13. iggit

    Turning On Submit Images

    Thank you very much sir. Shall give it a major try.
  14. iggit

    Turning On Submit Images

    Situation: 1 Master button (type=image) (call this 'on') 3 Slave buttons.. (type=image) (call them 1,2,3) When on is clicked it allows 1 2 and 3 to be clicked uinless 'on' is clicked 1 2 and 3 cannot be clicked now... if I had one simple clue as to how to pull this off .... buttons can be...
  15. iggit

    onChange ???

    This is the select: <select class=&quot;nodata&quot; name=&quot;makesponsorgamelevel&quot;> <option value=&quot;&quot;>?</option> //ignored <option value=&quot;red&quot;>Red</option> //100000 <option value=&quot;green&quot;>Green</option> //50000 <option value=&quot;blue&quot;>Blue</option>...
  16. iggit

    Key Detect, Collect

    I am attempting to do the following. Detect the keys pressed on the keyboard Add the key pressed in Key Code to a hidden form field in order... submit the form to a perl script every 10 seconds including the entire form field's contents of all keys pressed during that time... I can detect...
  17. iggit

    A LOGIC QUESTION

    Thank you very much. Was hoping to eliminate the major problem by searching for email addresses which would not be duplicated. The method you used is far superior to what I came up with so thank you I will indeed use it.
  18. iggit

    A LOGIC QUESTION

    OK I haven't lost it completely. Sorry for posting this so quickly. The answer was staring me in the face. if ($alreadyfound =~ /$username/) } else { $totalplayershistory++; } $alreadyfound = &quot;$username,$alreadyfound&quot;; Sorry for taking up the space.
  19. iggit

    A LOGIC QUESTION

    I have an array split by pipes sitting in @playerhistory , fields are $username,$enginenumber,$date,$time,$gamenumber, and $rollnumber. The total count of all entries is $totalrolls++ I can't nest a comparative function to shrink the list to a unique count of individual users instead of the...
  20. iggit

    Parent spawns child, child reads db in perl, child transfers to parent

    Thank you for your input and review but I'm solving this in a completely different way.

Part and Inventory Search

Back
Top