Re: [PHP] two small issues with php mail OT

2007-11-21 Thread Dimiter Ivanov
On Nov 21, 2007 2:29 AM, Børge Holen <[EMAIL PROTECTED]> wrote: > On Wednesday 21 November 2007 00:53:14 Jochem Maas wrote: > > Stephen Johnson wrote: > > > Who says you can't please them all... ;) > > > > Erin Brokovich. > > nah you sure? why cant i remember that. > must be that early altzheimers

Re: [PHP] Cannot send a hyperlink

2007-11-15 Thread Dimiter Ivanov
On Nov 15, 2007 5:34 PM, Brad <[EMAIL PROTECTED]> wrote: > Thank you so much! > > It worked like a champ first try! > I would have never seen that and have been looking everywhere on the net for > a working example! > > Funny thing is, right after is work perfectly twice, my database crashed! > > B

Re: [PHP] Help securing a server : Owned by W4n73d H4ck3r

2007-11-11 Thread Dimiter Ivanov
On Nov 9, 2007 5:48 PM, robert mena <[EMAIL PROTECTED]> wrote: > Hi Daniel, > > According to the audit this happened yesterday. > > I am searching astalavista but could not find anything, probably > because I am being too specific. > > From the php side (or closely) what steps would you recommend i

Re: [PHP] for loop inside a switch

2007-08-16 Thread Dimiter Ivanov
On 8/16/07, Hulf <[EMAIL PROTECTED]> wrote: > Hi, > > switch ($q) { > > for ($i=0; $i <21; $i++) { > case 'faq$i': > echo $faq1; > break; > } > } > > > I just want to loop out a big long list of cases. Maybe you want this kind of functionality : http://www.php.net/manual/en/language.varia

Re: [PHP] uploading really big files

2007-05-31 Thread Dimiter Ivanov
On 5/30/07, Angelo Zanetti <[EMAIL PROTECTED]> wrote: Dear all We need to develop a system where we can upload really big files. IE 15 - 25 Mb. So I know you can set the limit of the upload thats not a problem, I know a problem that we might experience is that the browser might time out. Is ther

Re: [PHP] echo or print ?

2007-04-17 Thread Dimiter Ivanov
On 4/17/07, Christian Haensel <[EMAIL PROTECTED]> wrote: Good morning fellow coders I've been working with PHP for a little over 5 years now, and it even got me a cute office and a good salary... but even though I can make a living off of it, I am still wondering about a few little things. When

Re: [PHP] Вопрос.

2006-10-05 Thread Dimiter Ivanov
On 10/5/06, Nikolay Furletov <[EMAIL PROTECTED]> wrote: Здравствуйте! Мне сказали, что по этому адресу можно задать вопрос по использованию PHP. Это правда? С уважением, Николай Фурлетов. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php /R

Re: [PHP] Help with dynamic radio buttons

2006-07-24 Thread Dimiter Ivanov
On 7/22/06, Chris Grigor <[EMAIL PROTECTED]> wrote: Afternoon all I need some help here with a problem on dynamic radio buttons. I have a script that calls a database for a list of questions. The questions are returned and each question needs to have 5 radio buttons assigned to it. The radio bu

Re: [PHP] combine implode() and array_keys() to get a string of key names

2006-07-07 Thread Dimiter Ivanov
On 7/7/06, Dave M G <[EMAIL PROTECTED]> wrote: PHP List, I've got a series of associative arrays that contain simple string values that I want to insert into my database. In each array, the names of the keys correspond to the column names in the database table. The values stored in the

Re: [PHP] sending mail via php and unix box-clients thinks it's spam

2006-06-11 Thread Dimiter Ivanov
On 6/11/06, David Robley <[EMAIL PROTECTED]> wrote: blackwater dev wrote: > Here is what I use as the header: > > $header="From:[EMAIL PROTECTED]: text/html"; As Richard Lynch, suggested you need to check the headers from both the emails. Send exatcly the same mails to yourself, using both

Re: [PHP] If value is odd or not

2006-06-07 Thread Dimiter Ivanov
On 6/5/06, Adam Zey <[EMAIL PROTECTED]> wrote: Let's make it even more compact and confusing :) echo "$variable is ".($variable % 2 ?'even':'odd')."\n"; I'm not sure if you can nuke the whitespace in the modulus area or not. Yes you can,in php whitespaces inside expressions does not have sp

Re: [PHP] If value is odd or not

2006-06-02 Thread Dimiter Ivanov
I doubt that Jonas ever expected 'the rain of answers' that will follow his humble question ;] On 6/2/06, tedd <[EMAIL PROTECTED]> wrote: At 3:32 PM +0200 6/2/06, Jonas Rosling wrote: >Hi all, >is there any easy why to check if a value is odd or not? Jonas: echo($num & 1); This produces 1 for

Re: [PHP] is there a faster "file" command?

2006-05-31 Thread Dimiter Ivanov
On 5/31/06, Merlin <[EMAIL PROTECTED]> wrote: Hi there, I am reading a remote plain text file from another server via the file command: $str = file ("http:/x"); This is a feed so there is no other way then reading it remote. Now this reading takes up between 0.5 and 1.0 s which is far to s

Re: [PHP] Re: Parse string with variables

2006-05-31 Thread Dimiter Ivanov
On 5/31/06, Barry <[EMAIL PROTECTED]> wrote: Merlin schrieb: > Hi there, > > I am trying to parse a plain text which contains variables. The string > looks like this: > > P=1 > U=test > T=ok > P=2 > U=test2 > T=anything > > How could I create arrays out of this. To be able to access the values >