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

  • Users: madaxe
  • Order by date
  1. madaxe

    ERROR LOOP problem and mailto Issue.......Bugger

    Hi Chessbot Man way over my head im still learning i only started learning 2 weeks ago and already i have learnt a fare bit, but meta refresh?????? what is it..... Its a stasis leak what is it.. its a stasis leak in the fabric of time.. what is it.. Can you surgest a fix for my problem...
  2. madaxe

    Matching an array line and replacing with new data

    Ok i sat down and had another crack at it this is what i came up with see below. Now it finds line 10 in the array and prints those values as header the values in the array "10 Billy" The part im struggling with is reopening the file and writting the new line back to line 10 in the array with...
  3. madaxe

    Matching an array line and replacing with new data

    Hi Mikevh the array looks like this $weekno|$playerpick 1|golfer 2|golfer 3|golfer 4|golfer 5|golfer 6|golfer if the user picks week 4 ie $week_pick from the form then it should find week 4 in the array $weekno and replace the second string $playerpick golfer with the player they picked...
  4. madaxe

    Matching an array line and replacing with new data

    Trying to step through the array until one of the first elements in the array is matched then replace that line with new data. Madaxe open (PLAYERLIST3, "$perpicklist"); @userlist3 = <PLAYERLIST3>; close (PLAYERLIST3); foreach $moddata (@userlist3) { chomp $moddata; ($weekno, $playerpick)...
  5. madaxe

    ERROR LOOP problem and mailto Issue.......Bugger

    When my password field is empty and i hit submit it gets stuck in a loop involving the sub error and i get a popup box coming up continualy i tried using an unless statement but i cant get it to work all my form scalars are being set correctly i see the values in the error popup box. Also i...
  6. madaxe

    Why Does my code take 30 sec's to process

    thanks paul i will try Madaxe
  7. madaxe

    ADDING TAB SPACES

    Hi this does not seem to work any ideas Madaxe
  8. madaxe

    Why Does my code take 30 sec's to process

    Hi Paul Can you tell me how i print debug statements, i will remove the cgi at the top but i think you are right that it wont make much differance. Marc Madaxe
  9. madaxe

    making link open in new browser window

    I have this line of code but i want the link to open in new window can anybody help MadAxe <span style="position: absolute; left: 0; top: 50"><a href="http://www.pgatour.com" onMouseOver="WEB_LINK_2.src='IMAGES/web_link2_over.jpg';" onMouseOut="WEB_LINK_2.src='IMAGES/web_link2.jpg';"><img...
  10. madaxe

    TABULATED SPACES HOW TO

    In my code below i want single or multiple tab spaces instead of "------"... can anybody help MadAxe. print "<OPTION VALUE=\"$preselect\">Week\($week)-----Used Picks-----$postpick</OPTION>\n";
  11. madaxe

    ADDING TAB SPACES

    Im having problems adding tabs or multiple tab spaces into my code can anybody help for instance the code below i want tabs instead of "-----"..... Im foxed MadAxe print "<OPTION VALUE=\"$preselect\">Week\($week)-----Used Picks-----$postpick</OPTION>\n";
  12. madaxe

    Why Does my code take 30 sec's to process

    Hi i have a sub that takes like 30 secs to run but i dont know why i have used the same sub in other cgi's and it runs instantly but this code takes ages i dont know why? code below:- #!/Perl/bin/perl use CGI; ################################################################################...
  13. madaxe

    DROPDOWN LISTS FROM ARRAYS HELP

    DONT WORRY TYPO as follows $userlist = "playerlist.cgi"; should be $playerlist Thanks For your help Madaxe
  14. madaxe

    DROPDOWN LISTS FROM ARRAYS HELP

    Thanks for that i still have one problem my dropdown list does not contain anything im not sure if its reading the file correctly MadAxe
  15. madaxe

    DROPDOWN LISTS FROM ARRAYS HELP

    The third post i also found a little confusing ive only just started so im a little green and frustrated how would this fit into my existing script and how would it pass the info to my next cgi using forms? scalar scrolling_list( -name=>'TEST', -values=>[@userlist]...
  16. madaxe

    DROPDOWN LISTS FROM ARRAYS HELP

    Hi i tried the first piece of code and it would not work i kept getting the following server error:- Premature end of script headers: dropdown4.cgi, referer: http://localhost/~mcjeeves/RON/junk/ Bareword found where operator expected at C:/Documents and Settings/mcjeeves/My Documents/My...
  17. madaxe

    DROPDOWN LISTS FROM ARRAYS HELP

    I want to creat a drop down menu from an array can anybody help, i think im on the right track but i cant get it to work. My code below. Mad Axe #!/Perl/bin/perl use CGI; $userlist = "playerlist.cgi"; print "Content-type: text/html\n\n"; open (PLAYERLIST, "$playerlist"); @userlist =...
  18. madaxe

    Drop Down Menu from Array txt File

    I want to creat a drop down menu from an array can anybody help, i think im on the right track but i cant get it to work. My code below. Mad Axe #!/Perl/bin/perl use CGI; $userlist = "playerlist.cgi"; print "Content-type: text/html\n\n"; open (PLAYERLIST, "$playerlist"); @userlist =...
  19. madaxe

    Log in Script can't get it to work

    TOTALLY REBUILT SCRIPT NOW IT WORKS MadAxe
  20. madaxe

    COOKIE MONSTER NOT PLAYING HELP!!!!!!

    BINGO THANKS ALOT VERY philote MADAXE

Part and Inventory Search

Back
Top