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. ooglek

    Web Import, Notes Field -- limitations?

    I have a customer who wants me to put a multi-line Notes portion into the email sent to Goldmine (Content-Type: application/x-gm-impdata in the email and all that). The email works fine, but the Notes= field doesn't seem to keep anything more than the first line, which makes sense, since \n...
  2. ooglek

    can not print envelopes

    Try using Web Envelopes, http://purplecow.com/web-envelopes/ -- you can print using your browser right on the envelope.
  3. ooglek

    use strict, using packages and variable access

    referer_mailer.pm is a bunch of code I want executed. It's not in subs, so I can't just call it. What is the proper way to call the variables in the calling perl script? Ishnid -- what you propose won't help me since referer_mailer.pm doesn't contain any subs.
  4. ooglek

    use strict, using packages and variable access

    Ok, so I've gotten it to the point where I'm declaring all of my variables in submit6.pl: #!/usr/bin/perl use strict; $conf::apachelog = '/path/to/apachelog.log'; $conf::testing = 1; require "/home/path/referer_mailer.pm"; #use referer_mailer; #not...
  5. ooglek

    Scope of variable

    It'd be helpful if you could post how you did it in the end... :-) I'm trying to do the same.
  6. ooglek

    use strict, using packages and variable access

    To make myself a better programmer, I am using "use strict." Everything was fine until I split the code from the config. I want to use several configs, but 1 piece of code. So I put the config in a file called submit6.pl which contains several variables: my $apachelog =...
  7. ooglek

    alter table blah order by column desc

    As the title states, the question is regarding the order by column part of "ALTER TABLE." Once I've done the alter table blah order by column desc, is there any OTHER way to see how MySQL is ordering the table other than by doing a "select * from blah limit 10" and seeing...

Part and Inventory Search

Back
Top