beginner's print question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • chinese.central@googlemail.com

    beginner's print question

    How can I print:

    print "It is now localtime()";

    How should I quote the statement above?

    // I have tried googling quite hard for a while.

    Thanks. Regards, Ben

  • BKDotCom

    #2
    Re: beginner's print question


    chinese.central @googlemail.com wrote:
    How can I print:
    >
    print "It is now localtime()";
    >
    How should I quote the statement above?
    print 'It is now '.localtime();
    echo 'It is now '.localtime();

    Comment

    Working...