Просмотр сообщений

В этом разделе можно просмотреть все сообщения, сделанные этим пользователем.


Сообщения - ReDrum

Страницы: [1]
2
Perl / Ошибки. Help!!!
« : 13 Июня 2003, 18:01:21 »
In common way to resove problems place
use strict
read faq for more

3
Perl / Ошибки. Help!!!
« : 13 Июня 2003, 17:58:30 »
Too many arguments for %s

(F) The function requires fewer arguments than you specified. ;)=

4
Perl / или html или Perl
« : 13 Июня 2003, 17:25:46 »
Цитировать
Yaroslav:
вроде я так и делал


Немного не так ;)=
можно еще


use CGI;
my $q  = CGI->new();
print $q->br(),
      \'Сообщение\',
      $q->br(),
      $q->textarea(), ....etc

5
Perl / Ошибки. Help!!!
« : 13 Июня 2003, 17:15:46 »
%s() called too early to check prototype

(W prototype) You\'ve called a function that has a prototype before the parser saw a definition or declaration for it, and Perl could not check that the call conforms to the prototype. You need to either add an early prototype declaration for the subroutine in question, or move the subroutine definition ahead of the call to get proper prototype checking. Alternatively, if you are certain that you\'re calling the function correctly, you may put an ampersand before the name to avoid the warning. See the perlsub manpage.

Страницы: [1]