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 Chris Miller 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. be12dune09a

    related to jetspeed2

    I have succesfully instaled jetspeed2 but I can not run it .It gives the following exception : exception javax.servlet.ServletException: Failed to initalize jetspeed. org.apache.jetspeed.exception.JetspeedException: Jetspeed Initialization exception...
  2. be12dune09a

    how can I send a mail

    i HAVE A SMTP SERVER I PUT ini_set("SMTP","SMTP.HOUSTNAME.COM"); BUT IT STILL DOESENT WORK I AM RUNNING IT UNDER WINDOWS
  3. be12dune09a

    how can I send a mail

    I tryed with <? ini_set("SMTP","localhost"); ini_set("smtp_port","25"); mail("giru.cosmin@gmail.com", "ceva", "alceva"); ?> it did not work instead of localhost I put mail."my_server.com
  4. be12dune09a

    perl create file

    sysopen (TEXT, 'myfile.txt', O_RDWR|O_EXCL|O_CREAT, 0755); printf TEXT "Check out our text file!"; close (TEXT); where does this code save my file??
  5. be12dune09a

    how to escape from a string

    I found out :D
  6. be12dune09a

    how to escape from a string

    sub escapeQuote { $class = shift; $_ = shift; s/^'(.*)'$/$1/; s/\'/''/g; s/(.*)/'$1'/; return $_; }
  7. be12dune09a

    how to escape from a string

    how can I escape from a string a " ' " char to insert it in sql
  8. be12dune09a

    need real quick perl code conventions

    please give me a link for perl code convention specification
  9. be12dune09a

    html form data passing

    Hoe can I pass a data from a form to a perl script. what variables do I need to use. an exemple would be more than usefull.If you can supli me with an working code exemple it will be all I need. Please :D
  10. be12dune09a

    1; at end of a package

    whi do I need to put a 1; at the end of a package, and if I don't whi does it give an error
  11. be12dune09a

    Instance of an object 2

    Read below : Yes I read that but if that is right then how can I make a member of the class that is the property of an object(instance of the class) not for all the objects.????
  12. be12dune09a

    Instace of an object

    Yes I read that but if that is right then how can I make a member of the class that is the property of an object(instance of the class) not for all the objects.????
  13. be12dune09a

    Instace of an object

    In last code: package You; $You::you # a static member?
  14. be12dune09a

    Instace of an object

    Please don't send me to the perl manual,just explain if you can.How can I make in static member of a class in the object oriented way static, and how can I make a particular member of a class in the object oriented way particular like in java.Please code exemple Please. package Me; my...
  15. be12dune09a

    The :: in perl

    ok than if I use a variable without my it also the same as a static variable in Java?
  16. be12dune09a

    The :: in perl

    I read the perltoot but I diden't understand what :: does in for exemple $Person::Something What is Something? A static member of the class Person or a variable that is particular for each object and can be used directly without any method call.
  17. be12dune09a

    Classses in perl

    :)) ok this is what I whanted . this is great .I serch for that a long time and I had it in my own computer. :))
  18. be12dune09a

    Classses in perl

    I need to know how can I declare a class in perl with package class_name or with class class_name.Please explain the diference.An exemple will be usefull.
  19. be12dune09a

    variables in perl

    yes I know :) but whi can I do somthing like $self = { NAME => undef, AGE => undef, PEERS => [], }; $ is a scalar not a hash.
  20. be12dune09a

    variables in perl

    same text as in variable in php?

Part and Inventory Search

Back
Top