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
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 mes
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:[
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:
> >
>
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))
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 redirect
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 redirect
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
>
8 matches
Mail list logo