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 Mike Lewis 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: bretttt
  • Order by date
  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.
  16. bretttt

    use CGI::Cookie; For Cookies

    Hello, I have use CGI::Cookie; $in = new CGI; $coname = $in->cookie ( -name => 'iboostuser' ); $copass = $in->cookie ( -name => 'iboostpassword' ); It reads the cookies and works fine...... How can i also set a cookie using use CGI::Cookie; I am currently setting them with cookie-lib.pl...
  17. bretttt

    using cookie lib.pl

    How exactly would i go about doing that. I use this to read cookies. use CGI::Cookie; $in = new CGI; $coname = $in->cookie ( -name => 'iboostuser' ); $copass = $in->cookie ( -name => 'iboostpassword' ); open (CHE, "../cgi-bin/users/$uname/INFO$uname");
  18. bretttt

    using cookie lib.pl

    Sorry this might help, I know this is the full directory name on my server for my HTML directory /usr/local/www/virtual1/66/175/20/19/ Could an include or something help? I have read about includes but do not know how to put them in. Thank you.
  19. bretttt

    using cookie lib.pl

    Hello, i have this, use ../cookie-lib.pl; $cookie{iboostuser}=$tell[2]; $cookie{iboostpassword}=$tell[0]; &set_cookie(time+86400,'www.iboost.org','/',0); It works fine in my HTML directory fine. I am trying the same exact code in directory HTML/Cart, And i get internal server error... Can...
  20. bretttt

    Simple Question On chop.

    I got it, thanks.

Part and Inventory Search

Back
Top