Re: [PHP] Mysql query and PHP loops

2003-07-31 Thread Nicholas Robinson
I think this does what you want. You can probably extend it to do the final check for val3 vs. val2 select distinct t1.val1, max( t1.id ), t1.val2 from table as t1, table as t2 where t1.val2 <= t2.val2 group by t1.val1; HTH On Thursday 31 Jul 2003 3:22 pm, Petre Agenbag wrote: > Hi List >

Re: [PHP] Opinions on Micro$oft .NET

2003-07-31 Thread Joel Rees
I hate to rain on this parade, but, > I'm a pretty good PHP programmer, and things > I could knock out in a couple of hours seem to be WAY more difficult to > do in .Net. This is the pith of the question. If you knew what you're doing, anything from Microsoft takes longer to do than doing it t

[PHP] Please Help

2003-07-31 Thread Sathiyabama
Dear PHP Team, I request your help to sort some issues in using PHP. 1.Chennai IIT has developed one recorder.We can record our voice and video.Its user defined extenion is MV4. My requirement is 1.I want to send video file using mail() function in PHP.So how to send it.What is the procedure?

Re: [PHP] Please Help

2003-07-31 Thread John Manko
umm... ok. www.google.com www.php.net that should get you started. Sathiyabama wrote: Dear PHP Team, I request your help to sort some issues in using PHP. 1.Chennai IIT has developed one recorder.We can record our voice and video.Its user defined extenion is MV4. My requirement is 1.I wan

Re: [PHP] PHP or CGI in C/C++

2003-07-31 Thread Decapode Azur
> I would expect compiled C/C++ to be faster as there is no need for > the code to be interperated and compiled on each request. Is it possible to compile PHP to improve the speed execution ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] eval

2003-07-31 Thread Decapode Azur
Is it possible to put PHP code in eval ? Or just vars ? '; eval ($string); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP or CGI in C/C++

2003-07-31 Thread John Manko
i did a quick google, and found the following. hope it helps http://phpcomplete.com/articles.php?sec=readArticle&id=306 http://www.php-accelerator.co.uk plus, there is something called PHP bcompiler (byte compiler). I dont know the details of any of these, but should help. maybe others can exp

Re: [PHP] Please Help

2003-07-31 Thread Joona Kulmala
My requirement is 1.I want to send video file using mail() function in PHP.So how to send it.What is the procedure? http://fi2.php.net/manual/en/ref.mail.php Check out the templates, there is described how to build mail headers with attachments. PHPs own mail function doesn't support this by defa

Re: [PHP] eval

2003-07-31 Thread Adrian
PHP-Code: eval('?>'.$string) Vars: eval('$string="'.str_replace('"','\\"',$string).'";'); > Is it possible to put PHP code in eval ? > Or just vars ? > $string = 'The result of >'; > eval ($string); ?>> -- Adrian mailto:[EMAIL PROTECTED]

Re: [PHP] eval

2003-07-31 Thread Joona Kulmala
Decapode Azur wrote: Is it possible to put PHP code in eval ? Or just vars ? $string = 'The result of '; eval ($string); ?> It should go like: [code] eval('$var = "The result of"; $a=2; $b=3; $c = $a + $b; $var .= "$a + $b is $c";'); [/code] Just a question, what are you really trying to d

RE: [PHP] Please Help

2003-07-31 Thread Joseph Blythe
Sathiyabama, Is always a good idea to read the manual, search google and the list archives before posting to this list, the below links should help you get started. http://www.php.net/manual/en/function.mail.php and: http://www.php.net/manual/en/function.rmdir.php Regards, Joseph > -Ori

<    1   2   3