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

  1. WijnandW

    Function in table

    Thanks for your answer missbarbell. In the meanwhile I tried this: sub print_menu { print start_table ( { -class=>'appletwidth'}); print Tr ( td ( p ({ -class=>'applettitle' }, "Hoofdmenu" ))); get_menu(); print end_table; } sub get_menu { my $dbh=dbconnect::connect(); my...
  2. WijnandW

    Function in table

    Hi all. I'm experimenting with perl/CGI and now I want to create a menu for my webpage from a database. I have following code: sub print_menu { print table ( { -class=>'appletwidth'}, Tr ( td ( p ({ -class=>'applettitle' }, "Hoofdmenu" ), get_menu() ) )...
  3. WijnandW

    Getting strings out of a text file.

    Well, thank you guys, I really appreciate your help. I already found out what was wrong, the file was full with tabs and ^M's. When chopped those out it all worked fine. But you guys made me think, my approach is far too difficult. But it was the only way I knew how to do the job. The script...
  4. WijnandW

    Getting strings out of a text file.

    Hello world, As a big fan of the Magic the Gathering game I was trying to build a card database so I can search for specific cards. I want to load all the cards from the spoilerlists into a mysql database. The original text file is: http://wizards.com/magic/generic/cardlists/le_spoiler_en.txt...

Part and Inventory Search

Back
Top