Hi,
Is it possible to implement an object pooling service with PHP?
Something like COM+ or IAS (Inprise Application Server)...
any ideas?
regards,
Sepho
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
there a way to determine if the uploaded image is a standard jpeg or a progressive
image?
I'm looking at the GD documentation but i can't find anything
--
---
Alessandro Crugnola [sephiroth]
Flash | PHP Developer
http://www.sephiroth.it
Team Macromedia Volunteer for
Hi all,
How to access remote files with php?
For ex:
$sFile = "http://www.php.net/123.txt";;
if (file_exists($sFile)) {
$hFile = fopen($sFile);
...
fclose($hFile);
}
Regards,
Sephiroth
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
"Jason Barnett" <[EMAIL PROTECTED]> ?
news:[EMAIL PROTECTED]
>
> You can use the file functions with URLs so long as you have
> allow_url_fopen set to TRUE in your php.ini.
>
Doesn't works even
allow_url_fopen is true
PHP 4.3.10
Apache 1.3.27
Platform Windows 98
--
PHP General Mailing List
The error message:
HTTP/1.0 400 Bad Request Server: squid/2.5.STABLE5 Mime-Version: 1.0 Date:
Fri, 21 Jan 2005 01:48:05 GMT Content-Type: text/html Content-Length: 1213
Expires: Fri, 21 Jan 2005 01:48:05 GMT X-Squid-Error: ERR_INVALID_URL 0
X-Cache: MISS from ns1.autoera.com.tw X-Cache-Lookup: NON
in HTML with HTTP_GET, you can use:
xxx.href = "my.php?data="+encodeURI(escape("...foreign strings..."));
my.php:
$data = uniDecode($_GET["data"]);
echo $data;
function uniDecode($sText) {
$sData = preg_replace_callback("/%u[0-9A-Za-z]{4}/",toUtf8, $sText);
return unescape($sData);
}
func
6 matches
Mail list logo