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 SkipVought 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: *

  1. blitzer

    perl > asp script help

    Thanks George, When i load the php version all i get is "Array" and a white blank page. Also, should my server know what the General XmlHttp object name is? B
  2. blitzer

    perl > asp script help

    hi Lee, which language would you recommend? im pretty sure we have all of them installed but i own the server so we could install them ourself if need be. thanks
  3. blitzer

    perl > asp script help

    I am new to asp, but i dont think i need to know alot to do this. i have made a perl script which just reads the output of a page (selected according to the parameters) and prints it. Here is the entire script: #!/usr/bin/perl ### ### ### use LWP::Simple; $the_uri = $ENV{'HTTP_HOST'}; use...
  4. blitzer

    iframe height=100%

    thanks for looking over my page, but i doubt those changes are necessary. the output doesnt change. does anyone have any experience with iframe height=100% ?Thanks
  5. blitzer

    iframe height=100%

    Hey all. I am making a layout which uses tower banners on the right side of the page. i have the towers on a page which stacks them height-wise. this page is called with an iframe which stretches to the height of the current page (which will vary). here is a simplified page which shows what i am...
  6. blitzer

    document.write perl

    don't know how that ;; got there... anyway the problem is not with the perl code that works fine.. i just can't get the javascript to generate. when i call it with this on an html page: <SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;http://www.someurl.com/myscript.pl&quot;> </SCRIPT>
  7. blitzer

    document.write perl

    hi.. im trying to write the contents of this page via JavaScript.. no matter what I do it isn't working.. any help would be appreciated. $URL = &quot;http://www.someurl.com/somepage.html&quot;; my $content = get($URL); $content =~ s/'/\\'/g; $content =~ s/\?/\\?/g; $content =~ s/;/\\;/g...
  8. blitzer

    allowing only a-z, 0-9

    how do i parse so a form variable only submits if it consists solely of numbers and letters (a-z, A-Z, 0-9)? I'm sure there's already a thread which answers this but the search on this forum isn't working.. thanks, -blitz
  9. blitzer

    Variable in a variable

    Thanks all! The advice given by Coderifous was what i was looking for. -blitz
  10. blitzer

    Variable in a variable

    for ($nvar = 0; $nvar < 26; $nvar++) { if ($FORM{'$nvar'}) { $n_variables = &quot;$n_variables|$nvar\*$FORM{'$nvar'}&quot;; } } Basically I have $FORM{'1'} , $FORM{'2'} , etc.. I might want to change it to even higher than 25 so I don't want to have to repeat the code over and over...
  11. blitzer

    td onclick

    I'm using the xutopia / hads suggestion because in my <td> bar there is more than just text links.. anyway thanks to everyone for their help!
  12. blitzer

    td onclick

    thanks but not quite what I was looking for.. I'm looking for something where if you click anywhere in the <td> box you get a link. Like on cnn.com
  13. blitzer

    td onclick

    Hello All. I like how the CNN.com website has a menu which changes colors with onmouseover but the really cool thing is how you can click anywhere in the td box and it goes to the link.. rather than the usual where you can only click the text. Is there an easy way to do this?
  14. blitzer

    getting a future '$wday'

    Im working on a calendar like script and I need to know future dates.. out of ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); the user selects $mday , $mon (+1), and $year but I would like the page they go to to show the $wday as well.. any ideas? -blitz
  15. blitzer

    require function errors

    justice: It's just a simple 500 internal server error.. the required file is just a bunch of variables.. looks something like this: open(PAGE,&quot;$the_page_file&quot;); @PAGE = <PAGE>; close(PAGE); $blah = blah; $blah2 = blah2; Now, when I remove the open part it works fine.. problem is...
  16. blitzer

    require function errors

    krel: nah, the files are definately opening because it only crashes when it opens certain ones.. and if i change the content of the file it will work. -dan
  17. blitzer

    require function errors

    justice41: yes
  18. blitzer

    require function errors

    when i use require &quot;myfile.cgi&quot; in a perl file with a parser i always get errors.. the script cant handle requireing myfile.cgi if myfile uses the open function.. it's fine when myfile.cgi is just variables but when there are functions in it there's trouble.. any explanations?
  19. blitzer

    require function

    is there any quirks in the require function or do you just use it like it seems? i mean like if i want to open some files in the middle of the perl code and i have the file opening code in a text file i just require that file where i want to open the files and it should work like a printed the...
  20. blitzer

    multi-variables, same output..

    how would I do this? $var1 & $var2 = &quot;on&quot;; the above gives me an error..

Part and Inventory Search

Back
Top