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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bretttt

  1. bretttt

    Checking Image Dimensions With Perl

    Hey my server had that installed already very easy to use thanks a lot
  2. bretttt

    Checking Image Dimensions With Perl

    Is there a way to retrieve the width and height of an image with perl and assign the values to $height $width? Thanks in advance.
  3. bretttt

    forwarding with Mail::Mailer 'sendmail';

    Hello I have my $m = new Mail::Mailer 'sendmail'; $m->open({ 'Subject' => $subject, 'To' => $to, 'From' => $from, 'MIME-Version' => '1.0', 'Content-Type' => 'text/html; charset=us-ascii'...
  4. bretttt

    Sendmail Sending.....but not what i want

    Hello, i have a simple question on sending html email with sendmail. I have this code that works fine but just prints the html please help! thansk in advance, Brett. open (SENDMAIL, "| $sendmailpath -t") || die "Cant access sendmail at $sendmailpath. Reason: $!"; ; print SENDMAIL...
  5. bretttt

    Allowing Window To Be Sizable

    hello, i have this var newWinWidth = 700; var newWinHeight = 500; window.resizeTo(newWinWidth, newWinHeight); but cannot adjust the window size after. How do i make it sizeable? thanks.
  6. bretttt

    Sending Variable To New URL

    Im all set, i got it thanks.
  7. bretttt

    Sending Variable To New URL

    How can i make i pop up the window.alert, if platval dont equal a numeric character? thanks in advance if (platval == \"\"){ window.alert('You Must Enter A Valid Number'); } else{ document.location.href='Cart_Manager.pl?quantedit=$pasd&truequant=platval'; } }
  8. bretttt

    Sending Variable To New URL

    Sorry, i did work, i was reading it wrong. Thank you very much.
  9. bretttt

    Sending Variable To New URL

    Taht didnt work... Any other suggestions?
  10. bretttt

    Sending Variable To New URL

    Thank you
  11. bretttt

    Sending Variable To New URL

    Hello, i am trying to send a variable from a prompt box to a new url and am having difficulties. I have if (platval == \"\"){ window.alert('You Must Enter A Valid Number'); } else{ document.location.href='Cart_Manager.pl?quantedit=$pasd&truequant=platval'; } } The...
  12. bretttt

    Making textarea unchangable

    what is close out a post
  13. bretttt

    Making textarea unchangable

    How can i make an textareas value permanant? thanks.
  14. bretttt

    Removing Spaces In Scalar

    Hello, I have A scalar $example=" blah blah blah"; how can i remove the spaces up to the first character? Thank you.
  15. bretttt

    Retrieving Query String ENV{'QUERY_STRING'};

    Hello, i have this, $SWING = ENV{'QUERY_STRING'}; is this the correct way to retrieve the query string, it worked for me before, but now i get internal server error... Is there another way to get this? thanks.

Part and Inventory Search

Back
Top