Re: [PHP] NONE

2001-06-20 Thread Pavel Kalian
www.google.com Pavel - Original Message - From: "Ali Amirnezhad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 20, 2001 5:47 AM Subject: [PHP] NONE > Hi every body, > I look for some plase to find good programs for APACHE web server

Re: [PHP] time

2001-06-20 Thread Pavel Jartsev
> Jon Yaggie wrote: > > quickly can some one tell me if time() return server or usersystem > time? > Server time. -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTEC

Re: [PHP] Need recommendation: good user management system (PHP/MySQL)

2001-06-20 Thread Pavel Jartsev
ript to > password protect an area of my site and add/edit > user's accounts. You know the usual member > management script. > > Thanks in advance! > > // Andreas Maybe this link helps a little: http://freshmeat.net/search/?q=php+user+management -- Pavel a.k.a. Papi -- P

Re: [PHP] for() problem on php-4.0.6

2001-07-09 Thread Pavel Jartsev
n 4.0.6 version, it writes > > 01, 2, 3, 4, ... 12 > > what is the different between verisons? or how can I solve this? > Try this: \n",$idx ); } ?> See also: http://www.php.net/manual/en/function.printf.php http://www.php.net/manual/en/function.sprintf.php -- Pavel a

Re: [PHP] getting auto-incrementing fields

2001-07-12 Thread Pavel Jartsev
er for the new row. > > Can anyone help?? Maybe this helps: http://www.php.net/manual/en/function.mysql-insert-id.php -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

Re: [PHP] the triple equal sign?

2001-07-16 Thread Pavel Jartsev
elias wrote: > > What is the '===' ? > http://www.php.net/manual/en/language.operators.comparison.php -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PHP] how to create directory through php on linux platform??

2001-08-09 Thread Pavel Jartsev
> Balaji Ankem wrote: > > Hi! dear friends, >how to create directory through php on linux platform?? http://www.php.net/manual/en/function.mkdir.php > >and how to give permissions to the directory. > http://www.php.net/manual/en/function.chmod.php -- Pavel

Re: [PHP] Php page

2001-08-09 Thread Pavel Jartsev
reshmeat&q=php+banner§ion=projects -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Select

2001-08-14 Thread Pavel Jartsev
f you want to get all result, use while-loop like this: -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Eval error

2001-08-16 Thread Pavel Jartsev
combr/cgi-local/envia.php(19) : eval()'d code on line > 1 > > Can anyone please help me? > Use arrays, it's much easier. Set name of fields like this: email[0], email[1] and email[2]. Now after submitting the form you have array $email. And for-loop will be: Hope this he

Re: [PHP] .htaccess username

2001-08-16 Thread Pavel Jartsev
reads out the usersname "patrick" ?? > > (and if ,... how? ;) > $PHP_AUTH_USER and $PHP_AUTH_PW. -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Addtype command in htaccess

2001-08-16 Thread Pavel Jartsev
ttpd-php4 .html Just remove the '4' from this line and it's ok. -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP on client-side

2001-08-16 Thread Pavel Jartsev
ls behind this project was to prove that PHP can be used to write client-side GUI applications. -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

Re: [PHP] who can give me a article about begining Regular expression?

2001-08-22 Thread Pavel Jartsev
liufeng wrote: > > thanks! > i want to learn Regular expression. http://www.php.net/manual/en/pcre.pattern.syntax.php -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: [PHP] problem with constants

2001-08-24 Thread Pavel Jartsev
ny input and help to solve this problem ... > Use $variable['value'] or $variable["value"]. Because, if you use $variable[value], then PHP thinks that 'value' is some constant, not string. This is why these warnings occurs. -- Pavel a.k.a. Papi -- PHP General M

Re: [PHP] PHP & sendmail

2001-08-24 Thread Pavel Jartsev
it. Is >it posible ? http://www.php.net/manual/en/configuration.php#ini.sendmail-path -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Statement Confusion

2001-09-06 Thread Pavel Jartsev
Jordan Elver wrote: > > Hi, > Could any one explain what this statemnt means? > > $i = (!$i)?"0":$i; > http://www.php.net/manual/en/language.operators.comparison.php RTFM :) -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscri

[PHP] Warning: offset not contained in string

2001-09-26 Thread Pavel Kharitonov
t; line xxx contains the following code: $query.= " WHERE ses_id=$sid"; This warning started happening after I added some ' (single quotes) to the string $query somewhere else at the top. At least that's the best reason I can come up with. TIA Sincerely, Pavel Khariton

[PHP] Re: Need direction on PHP-CLI MUD Server

2004-09-02 Thread Pavel Jartsev
Don Myers wrote: ... B. Since the PHP-CLI script never ends how can I send the first echo "You have..."? Maybe flush() helps. http://www.php.net/manual/en/function.flush.php -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with MySQL

2007-03-20 Thread Pavel Kaznarskiy
calhost\www\2.php on line 12 Warning: mysql_query(): Access denied for user 'ODBC'@'localhost' (using password: NO) in z:\home\localhost\www\2.php on line 14 Warning: mysql_query(): A link to the server could not be established in z:\home\localhost\www\2.php on line 14 Database Selected: i" what does it' mean? -- Best regards, Pavelmailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Problem when scaling Jpeg images with libgd

2004-05-20 Thread Pavel Jartsev
Oôv as&äönsson wrote: ... Does anyone have any suggestion what i can do? Just a wild guess.. What happens if You use imagecreatetruecolor() instead of imagecreate() and imagecopyresampled() instead of imagecopyresized()? -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/

[PHP] Different size of file on server and on output

2007-10-22 Thread Pavel Janda
byte? Whitch byte it is? Thanks a lot! Pavel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Different size of file on server and on output

2007-10-22 Thread Pavel Janda
Thanks a lot. However there wasn't any visible whitespace in code, leaving of ?> helped... I haven't known, that it is not required :o). Thank you very much again! Pavel M. Sokolewicz napsal(a): Pavel Janda wrote: Hello to everybody, I have this problem with downloading files

[PHP] tidy extension is loaded but not working

2008-01-04 Thread Pavel Pragin
get this error: Fatal error: Class 'tidy' not found in /var/www/html/_autodesk.com/aliasdesign/releases/20071226192151/tidy.php on line 16 Please help what I am missing? Thank You . PAVEL PRAGIN [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> T > 650.

[PHP] Re: Hope any body can fix this!!!

2004-01-28 Thread Pavel Jartsev
Distance) VALUES ('$LogoutTime - $RightLoginTime')"; Hope that helps. :) -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: locking to domain

2004-01-30 Thread Pavel Jartsev
;HTTP_HOST'] and make decisions according to it. Hope that helps. :) -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why are my style sheets all listed on one line?

2004-01-30 Thread Pavel Jartsev
")? "newline"-character should be inside double quotes ("\n"). For example: instead of: echo '\r\n'; use: echo ''."\n"; Hope that helps. :) -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to Request?

2004-04-06 Thread Pavel Jartsev
T['fd']); $color = ($_REQUEST['c']); } if ( isset( $_REQUEST['fd'] ) && isset( $_REQUEST['c'] )) { $vehicle = $_REQUEST['fd']; $color = $_REQUEST['c']; } Hope that helps. -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to...

2004-04-06 Thread Pavel Jartsev
oad"-event of BODY-tag, i.e. send such HTML to browser: Hope that helps. -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Com

2001-02-07 Thread Pavel Kalian
COM of course comes with PHP (but is available on Win only), RTFM on calling COM support... Pavel - Original Message - From: "Christian Reiniger" <[EMAIL PROTECTED]> To: "php" <[EMAIL PROTECTED]> Sent: Wednesday, February 07, 2001 11:49 AM Subject: Re: [P

Re: [PHP] Com

2001-02-07 Thread Pavel Kalian
The COM construct was introduced in PHP4 as a replacement for com_* functions to provide something looking similar to MS's syntax AFAIK and it exists and works at least for me and many others. And it behaves more or less like a normal class. Cheers Pavel - Original Message -

Re: [PHP] Netscape not resolving $PHPSELF ??

2001-02-13 Thread Pavel Jartsev
s a sample: > > echo '', > $subcategories[$index], ''; > > and: > >echo " HREF=$PHPSELF?mode=index&category=root>Main -> $category"; > > Any ideas? This works FINE in Internet Explorer. And all the other vars in > those echo stateme

Re: [PHP] PHP vs JSP

2001-02-13 Thread Pavel Jartsev
a > better choice. > ... Here's something: http://php.weblogs.com/jsp Maybe it helps a little. :) -- Pavel a.k.a. Papi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list a

<    1   2