[PHP] Reg.Photo Upload Tool

2007-09-07 Thread Ramesh.b
Hello, Any opensource or PHP applicaiton is available for Photo upload tool?. Thanks Ramesh -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php5: capital I letters in func/class method names do not work with turkish locale in php5

2007-09-07 Thread Roman
On Thu, 06 Sep 2007 15:57:57 +0300, Tijnema [EMAIL PROTECTED] wrote: On 9/6/07, Roman Neumüller [EMAIL PROTECTED] wrote: I'm a german web-designer living in Turkey. Sometimes I use opensource software like gallery2 or WP to have customers have some nice web albums or blog. The turkish

RE: [PHP] Reg.Photo Upload Tool

2007-09-07 Thread Jay Blanchard
[snip] Any opensource or PHP applicaiton is available for Photo upload tool?. [/snip] Easy to do yourself http://us2.php.net/manual/en/features.file-upload.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Opening a file

2007-09-07 Thread Sanjeev N
?php $fruit = apple; $lines = file(fruits.txt); if (in_array($fruit,$lines)) { $a = Y; } ? Here there may be 2 cases. 1st either file() is not returning any values, that is why array empty and wrong datatype error, are you able to read the file. 2nd try to use implode function to consider

Re: [PHP] looking for the right mcrypt ciphers

2007-09-07 Thread Samuel Vogel
I solved the problem using bin2hex()! Regards, Samy Samuel Vogel schrieb: Hey guys, I'm wondering which mcrypt cipher will provide me with an encryted string, that can afterwards be encrypted again and is transverable without problems through an link in an e-mail. I would like to encrypt

[PHP] looking for the right mcrypt ciphers

2007-09-07 Thread Samuel Vogel
Hey guys, I'm wondering which mcrypt cipher will provide me with an encryted string, that can afterwards be encrypted again and is transverable without problems through an link in an e-mail. I would like to encrypt some piece of information (up to 25 characters) and send it to the user in an

[PHP] Converting PHP code to C#?

2007-09-07 Thread Symbian
Hi, I'm not sure if this is the right place to post this, I have some decryption routines that use mcrypt that I need to decrypt in .NET, does anyone know how why I cant get this to work? PHP $mcryptSize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $mcryptIV =

Re: [PHP] Converting PHP code to C#?

2007-09-07 Thread mike
On 9/7/07, Symbian [EMAIL PROTECTED] wrote: Hi, I'm not sure if this is the right place to post this, I have some decryption routines that use mcrypt that I need to decrypt in .NET, does anyone know how why I cant get this to work? I've done it in reverse - something encrypted in .NET and

[PHP] Is it possible to create a php.so

2007-09-07 Thread Khai
I have several background processes written in PHP. In our design, we have the parent process which check if there is work to process, and if so launch a child process via exec() to do actual work. By design, we want the child process to do just what it was told to do and gracefully

[PHP] Creating a File in Memory

2007-09-07 Thread John Schattel
Hello All, I am trying to zip data in a PHP program using the following code. The resulting file (ndfdViaPipe.kmz) is zip'ed but the data in the archive lacks a file name. So when a program like Google Earth tries to process the file, it fails. When I bring ndfdViaPipe.kmz into WinZip, the

[PHP] html2png

2007-09-07 Thread timothy johnson
I was wondering if anyone knew of some php code that I could use to create thumbnails of webpages.

Re: [PHP] Creating a File in Memory

2007-09-07 Thread Graham Cossey
Can't help with your main problem, however I find it easier to write the likes of : $kml_string = $kml_string . Document; as: $kml_string .= Document; ;-) On 9/7/07, John Schattel [EMAIL PROTECTED] wrote: Hello All, I am trying to zip data in a PHP program using the following code. The

Re: [PHP] Creating a File in Memory

2007-09-07 Thread Michael Preslar
Can't help with your main problem, however I find it easier to write the likes of : $kml_string = STOP all of the soap maybe some water some chips if you have them STOP On 9/7/07, John Schattel [EMAIL PROTECTED] wrote: Hello All, I am trying to zip data in a PHP program using the following

Re: [PHP] Reg.Photo Upload Tool

2007-09-07 Thread Kevin Waterson
This one time, at band camp, Ramesh.b [EMAIL PROTECTED] wrote: Hello, Any opensource or PHP applicaiton is available for Photo upload tool?. http://phpro.org/examples/Multiple-file-upload.html Kevin -- Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a

[PHP] 'application' variables not available? Alternatives?

2007-09-07 Thread david
Hi I am looking at converting a large project from ASP to PHP, and have read that there is no equivalent of global.asa in PHP. It is probably easiest if I describe the problem starting with how the ASP does it: Project uses global.asa to load a lot of 'global' constants and variables into

[PHP] Re: cant mail

2007-09-07 Thread Manuel Lemos
Hello, on 09/06/2007 07:42 AM Diana Castillo said the following: when I try to send mail using this code: mail([EMAIL PROTECTED],TEST MAIL,TESTING MAIL); I get this error: Warning: mail() [function.mail]: SMTP server response: 554 [EMAIL PROTECTED]: Recipient

[PHP] Php script for mail in a xhtml page

2007-09-07 Thread Mauro Sacchetto
I've to implement a php script in a web page to send mail. If I use a .html form and a separate .php script, all works fine. In the contrary, if I try to put the script into the .html file, I've some troubles... Here's the code:

Re: [PHP] Converting PHP code to C#?

2007-09-07 Thread Symbian
Mike, Thanks for the reply and your very useful notes. I'm unable to workout how to get the same IV as the one generated by the PHP script is random. The thing is that we cant change the PHP script as its readily being used now. Maybe I should look at the encryption routine and reverse that

Re: [PHP] 'application' variables not available? Alternatives?

2007-09-07 Thread Vidyut Luther
Hi David, I'd say your best bet is to use memcached. This will allow the variables you specified to stay in memory, and be accessible to all other applications. http://www.danga.com/memcached/ Keep in mind though, just because ASP does it in one way, you don't want to do a bit for bit copy. You

Re: [PHP] Php script for mail in a xhtml page

2007-09-07 Thread brian
Mauro Sacchetto wrote: I've to implement a php script in a web page to send mail. If I use a .html form and a separate .php script, all works fine. In the contrary, if I try to put the script into the .html file, I've some troubles... Here's the code: ... When I try to open the page, I receive

Re: [PHP] Converting PHP code to C#?

2007-09-07 Thread mike
On 9/7/07, Symbian [EMAIL PROTECTED] wrote: I'm unable to workout how to get the same IV as the one generated by the PHP script is random. The thing is that we cant change the PHP script as its readily being used now. Maybe I should look at the encryption routine and reverse that first? just

Re: [PHP] Reg.Photo Upload Tool

2007-09-07 Thread Ramesh.b
Thanks Jay, I want a client side tool , something similar to Yahoo photos or flickr, where it will shrink the size of the image and upload. Thanks Ramesh Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] Any opensource or PHP applicaiton is available for Photo upload