Isn't that the same as saying, I'd never visit a web site that required me to download images..... I know the Internet can be a hateful place, but surely we...
... We could take this to the extreme, we could say that *all* web sites force us to download stuff ... the page itself is 'downloaded' onto our computer for...
Hi Selvi Have a look at the files attached to get your pbm solved. visit this site : http://www.mtdev.com/2002/06/use-php-and-javascript-to-display-local-time/...
Dear all, Can anyone suggest good PHP class/library that can zip client local files and upload to the server? Single package is great as well as separate...
Hello... Sounds great.. but remember that PHP is a server side script... not client size.. so you can't do that with PHP... find another tool or languaje that ...
Yup, sorry forgetting about server side stuff. It means that I must use mix of language, e.g. javascript in client side and php in server side. By the way, is...
Dear all, I've downloaded the convert class to convert 3gp, mov, wmv to flv. As the php file is small, i just posted all the original code at the end of this...
hi, can any give some suggestion to rite a module to generate a docment from php. the idea is to generate .doc files from php so that it will be help full to...
MS Office documents can be created on Windows platforms using COM called from PHP :- http://web.informbank.com/articles/technology/php-office-documents.htm ...
There are different ways to secure login of a user. Sessions are stored on the server normally on flat files. However, session id`s do differ in different...
hi check out the code it is working fine <? //get the current server date as timestamp $dat = mktime(date("G"), date("i"), date("s"), date("n"), date("j"),...
Is it possible to create MS word and MS excel documents wothout COM, for example on linux platform? (Of couse, I'm talking about pre-office2007 formats). ...
I am trying to determine if a file exist in a another web server and if it does exist then I will display the link of the file. I tried is_readable(),...
Hi dear plz use get_headers() function but it is only avaiable in php5+. for php4.x please use fopen function that can be used to open remote files. Let me...
OK, Just in case you are interested, I found a faster solution than fopen() ... <? function url_exists($strURL) { $resURL = curl_init(); curl_setopt($resURL,...
Hello Nestor, That's ok you can do the same with cURL. But what if a server do not support cURL library??? Thanks :) Junaid Néstor <rotsen@...> wrote: ...
Hi there, I'm new to the group and the site. I'm a relative newbie to PHP and have been relying on phpBB and phpNuke for my needs. Now I'm looking to run a...
I thank you for your help, but in my case, my server supports cURL and I am using php version 4 and fopen is too slow. See the page I create deals with around...
Dear all, I'm working on a project with my own server (xampp 1.54a with apache, php and mysql. Safe mode has been turned on. To do the task as in subject, I...
There's a class at http://www.phpclasses.org/browse/package/2631.html for Word documents that doesn't require COM, but this just uses the XHTML alternative...
I reckon the closest you'll get to a pre-written package is a 'Clan' system. There are 58 of these at Sourceforge (http://sourceforge.net/softwaremap/) if you...
Mert, I mention in previous post that file_exists does not work. It will return false whether the file exists or not. Thanks, Néstor :-) ... [Non-text...
It is not good to have emails being printed as a plain text in a website. I have published how to solve this. It simply makes the string harder for spiders and...