[PHP] RM file - play time

2004-11-24 Thread Alexander Kleshchevnikov
Can I get the information about paly time of the RM file by PHP? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: create and read array

2004-09-12 Thread Alexander Kleshchevnikov
Yeah, thanks. Good idea! It is good to code that: $authors = array(); while ($authors[] = mysql_fetch_assoc($news)); Chris Martin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Alexander Kleshchevnikov wrote: Maybe you want this: while ($data = mysql_fetch_assoc($news

[PHP] Re: Evaluating form posts

2004-09-12 Thread Alexander Kleshchevnikov
You should chech for configuration of magic quotes gpc. Use get_magic_quotes_gpc() function: $foo = get_magic_quotes_gpc() ? stripslashes($_POST[foo]) : $_POST[foo]) ; Do it with all GET and POST variables. -- Alexander. Php Mailing List Account [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: [PHP] I don't understand why !!!!

2004-09-12 Thread Alexander Kleshchevnikov
http://www.php.net/manual/ru/faq.databases.php#faq.databases.mysql.php5 --- Alexander Kleshchevnikov, DirectEDI Developer email:[EMAIL PROTECTED] icq: 153617972 --- Nicolae Serban [EMAIL PROTECTED] wrote in message news:[EMAIL

[PHP] Re: how to redirect ?

2004-09-11 Thread Alexander Kleshchevnikov
Hey! I think you used header() after put out some data or php installed on server as CGI. Because send header possible only if php installed as apache module. You can use custom function which use javascript for redirection. But it works if browser of client support javascript: function

[PHP] Re: how to redirect ?

2004-09-11 Thread Alexander Kleshchevnikov
Hey! I think you used header() after put out some data or php installed on server as CGI. Because send header possible only if php installed as apache module. You can use custom function which use javascript for redirection. But it works if browser of client support javascript: function

[PHP] Re: create and read array

2004-09-11 Thread Alexander Kleshchevnikov
Maybe you want this: while ($data = mysql_fetch_assoc($news)) { $sql += INSERT INTO newtable VALUES ($data['AUS'], $data['id']);\r\n; } If you nevertheless want save the data in array you can use a two-dimensional array $authors: $authors = array(); while ($data = mysql_fetch_assoc($news))

[PHP] Re: Java?

2002-09-22 Thread Alexander Kleshchevnikov
On 04 ??? 2000, you wrote in php.general: I note that the documentation for PHP 4.0 says that Java is supported; I haven't been able to find any documentation on how it is supported. Can someone point me to something? Hugh -- Hugh Caley, Lumeria, Inc. Lead Systems Engineer [EMAIL