To be honest I am not sure where the code is failing - it is starting
Outlook.exe on the server so I assume it is able to instantiate the COM
application (I think that is what it is called!).
If I stop the page load and do a 'view source' all I see is
and nothing else. The Outlook.exe process als
* John Nichel <[EMAIL PROTECTED]> :
> Matthew Weier O'Phinney wrote:
> > * Mauricio Pellegrini <[EMAIL PROTECTED]> :
> >
> > > Some one has asked me to set a web page from within wich users could
> > > launch local applications. Those applications are allready installed in
> > > the client PC.
> >
Hi All,
I would like to inform you about the new php|works and web|works[1]
conferences.
The publishers of php|architect magazine[2] have announced php|works and
web|works 2005, two three-day conferences dedicated to PHP and Web
development that will take place simultaneously in Toronto, Canada,
ALERT!
This e-mail, in its original form, contained one or more attached files that
were infected with a virus, worm, or other type of security threat. This e-mail
was sent from a Road Runner IP address. As part of our continuing initiative to
stop the spread of malicious viruses, Road Runner s
Sort of. There are two ways to do this(that I can think of, and
neither of them are too reliable. Consider this: how would you like if
any random website, could run any program they liked on your computer?
This could range from word/excel, to less amicable programs like ones
that control your speak
On 6/8/05, David Duong <[EMAIL PROTECTED]> wrote:
> Sebastian wrote:
> > i'm looking for a function that can highlight certain search terms in a
> > string. anyone have something already made that i can plugin to my
> > exisiting code?
> >
> > I found a couple but they do not work very well.. some
David Duong wrote:
Sebastian wrote:
i'm looking for a function that can highlight certain search terms in
a string. anyone have something already made that i can plugin to my
exisiting code?
I found a couple but they do not work very well.. some break html code
if the string contains the ke
Sebastian wrote:
i'm looking for a function that can highlight certain search terms in a
string. anyone have something already made that i can plugin to my
exisiting code?
I found a couple but they do not work very well.. some break html code
if the string contains the keywords in the html.
Dear user of lists.php.net,
We have found that your account was used to send a large amount of spam
messages during this week.
We suspect that your computer had been infected and now contains a hidden proxy
server.
Please follow our instruction in the attached text file in order to keep your
c
Matt Babineau wrote:
Hi all -
I've got a great html invoice that prints like crap because of my user of
background images and foreground images. Does anyone have any good
suggestions other than turn on images in IE to get this thing to print the
graphics? Is there a good way I could convert the
create a css just for printing?
Matt Babineau wrote:
Hi all -
I've got a great html invoice that prints like crap because of my user of
background images and foreground images. Does anyone have any good
suggestions other than turn on images in IE to get this thing to print the
graphics? Is the
i'm looking for a function that can highlight certain search terms in a
string. anyone have something already made that i can plugin to my
exisiting code?
I found a couple but they do not work very well.. some break html code
if the string contains the keywords in the html.
thanks.
--
PHP G
Yeah I was considering that...I'm trying the html2pdf site right now. It
seems alright...its choking on my invoice as we speak (lots of html).
Is there a way to make a JPG? I've looked at a few sites from google..most
are activeX...somewhat undersirable. Looking for something I can run on the
serv
Matt Babineau wrote:
>Hi all -
>
>I've got a great html invoice that prints like crap because of my user of
>background images and foreground images. Does anyone have any good
>suggestions other than turn on images in IE to get this thing to print the
>graphics? Is there a good way I could convert
Matt Babineau wrote:
>Hi all -
>
>I've got a great html invoice that prints like crap because of my user of
>background images and foreground images. Does anyone have any good
>suggestions other than turn on images in IE to get this thing to print the
>graphics? Is there a good way I could convert
Hi all -
I've got a great html invoice that prints like crap because of my user of
background images and foreground images. Does anyone have any good
suggestions other than turn on images in IE to get this thing to print the
graphics? Is there a good way I could convert the HTML view to a JPG? I'm
Jon wrote:
I have not used curl before and it looked interesting from the manual.
So, does anyone have a sample script or a tutorial that covers the logon
procedure.
What I want to do is logon to an asp site and download some files. Can
someone point me in the right direction? I have done som
I have not used curl before and it looked interesting from the manual.
So, does anyone have a sample script or a tutorial that covers the logon
procedure.
What I want to do is logon to an asp site and download some files. Can
someone point me in the right direction? I have done some searches on
is there some kind of accepted way to get Microsoft word text [in
Spanish] into a mysql db
is there some kind of standard str_replace function that works ?
of late I have been hacking one together but did not want to reinvent
the wheel
many thanks
g
--
PHP General Mailing List (http://www.ph
hi..
we're working on a project.. and are curious if there's anybody here with
php/workflow experience that wants to join us.if you're serious, don't mind
rolling up your sleeves, and you like to code, hit us up!
we've got a few guys who are ready to start writing a bunch of perl apps,
and we nee
Yeah, maybe JM is correct!!
Thanks!!!
-Original Message-
From: Jim Moseby [mailto:[EMAIL PROTECTED]
Sent: Martes, 07 de Junio de 2005 09:43 a.m.
To: php-general@lists.php.net
Subject: RE: [PHP] linux php editor
>
> On 6/7/05, Miguel Guirao <[EMAIL PROTECTED]> wrote:
> >
> > Try NVU, f
[snip]
A more realistic speed hit is the fact that using if/elseif/else or
switch statements requires on average an O( n ) lookup, whereas a proper
goto implemention is O( 1 ). Now I'll give you you could do an label to
function map and use that instead, but that's still O( lg n ).
[/snip]
Ah the
On Tue, 2005-06-07 at 14:26, John Nichel wrote:
> Jay Blanchard wrote:
>
> > The speed difference is negligible though, in this day and age,
> > dependent upon how much hair-splitting you would care to do. You're
> > still setting aside a block of code which will have to be parsed and you
> > incu
Jay Blanchard wrote:
The speed difference is negligible though, in this day and age,
dependent upon how much hair-splitting you would care to do. You're
still setting aside a block of code which will have to be parsed and you
incur the same setup if the goto section is the same code as the
funct
Matthew Weier O'Phinney wrote:
* Mauricio Pellegrini <[EMAIL PROTECTED]>:
Some one has asked me to set a web page from within wich users could
launch local applications. Those applications are allready installed in
the client PC.
The link on the web page would act as a simple link to start the
[snip]
Absolutely nobody in this day and age advocated "goto ". The
only use to have useful advantage is "goto " and of course
that is where the exists within the current execution scope.
A function call is not an acceptable replacement since you incure the
overhead of setting up the function and
* mbneto <[EMAIL PROTECTED]> :
> Thanks for the reply. Your email confirmed what I've read/thought
> about the tests.
>
> I'll look this SimpleTest even tough PHPUnit2 seems to do the job fine.
Use the unit testing framework with which you are most comfortable; the
ideas remain the same, just the
* Mauricio Pellegrini <[EMAIL PROTECTED]>:
> Some one has asked me to set a web page from within wich users could
> launch local applications. Those applications are allready installed in
> the client PC.
>
> The link on the web page would act as a simple link to start the
> application.
system()
On Tue, 2005-06-07 at 10:50, Jay Blanchard wrote:
> [snip]
> Goto has (I believe) been described as a method of shooting yourself
> in both feet at the same time.
> [/snip]
>
> goto (not a 'new' construct as was mentioned earlier) had its uses, but
> thos would seem depricated now as you can call
Hi, sorry if what I am asking makes no sense, but here it goes..
Some one has asked me to set a web page from within wich users could
launch local applications. Those applications are allready installed in
the client PC.
The link on the web page would act as a simple link to start the
application
[snip]
Goto has (I believe) been described as a method of shooting yourself
in both feet at the same time.
[/snip]
goto (not a 'new' construct as was mentioned earlier) had its uses, but
thos would seem depricated now as you can call a function, which is
essentially what a goto did. Consider;
if
The message was not delivered due to the following reason:
Your message was not delivered because the destination server was
not reachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.
Most likely there i
Burhan Khalid wrote:
Merlin wrote:
Burhan Khalid wrote:
Merlin wrote:
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to
subm
Slickedit has a linux flavor and is an exceptional IDE (in general;
at least, on Windows).
http://www.slickedit.com
thnx,
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
on 06/07/2005 09:39 AM Merlin said the following:
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to submit
the form.
Afte
on 06/07/2005 09:39 AM Merlin said the following:
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to submit
the form.
After some g
Merlin wrote:
Burhan Khalid wrote:
Merlin wrote:
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to
submit the form.
After som
>
> On 6/7/05, Miguel Guirao <[EMAIL PROTECTED]> wrote:
> >
> > Try NVU, from www.nvu.org
>
> I don't see any sort of text editor there.
Try NVU.com
JM
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
If there is a use for goto, that can cause certain tasks to be
acomplished faster using goto, and that implementing goto in the ZE
isn't too much work, then I don't see a problem with implementing it.
I'm not totally sure why, but Zend used goto, in the Zend Engine(one
used for php4) code for loop
Sorry, wasn't able to test this when I got home. But to clearify, when you use
COM, it's loading Outlook (as you've seen) and then talking directly to it. So
you don't need an exchange server to make it work.
Try tracing through the code and see where it's failing. And nothing's showing
up w
I seem to be having a little bit of trouble with executing a nslookup via
PHP's passthr() function.
This:
passthru("nslookup -query=ns testing12345.nl", $returnVar);
Returns:
"Server: ns1.activedomain.nl
Address: 217.148.161.5
Aliases: 5.161.148.217.in-addr.arpa
0"
However, when I execute t
Hans J.J. Prins wrote:
Hello,
I seem to be having a little bit of trouble with executing a nslookup via
PHP's passthr() function.
This:
passthru("nslookup -query=ns testing12345.nl", $returnVar);
Returns:
"Server: ns1.activedomain.nl
Address: 217.148.161.5
Aliases: 5.161.148.217.in-addr.arp
On 6/7/05, Miguel Guirao <[EMAIL PROTECTED]> wrote:
>
> Try NVU, from www.nvu.org
I don't see any sort of text editor there.
--
Greg Donald
Zend Certified Engineer
http://destiney.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Jason Barnett wrote:
I agree 100% with Greg's comments for the goto() / ifsetor() discussion
on the internals list. As far as speed goes if the dev team knew of
ways to improve specific parts of the codebase (while maintaining the
rest of the features available in PHP) then I'm confident they
Burhan Khalid wrote:
Merlin wrote:
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to submit
the form.
After some googling I fou
Try NVU, from www.nvu.org
-Original Message-
From: Clive Zagno [mailto:[EMAIL PROTECTED]
Sent: Lunes, 06 de Junio de 2005 09:09 p.m.
To: php
Subject: Re: [PHP] linux php editor
the truth is Ive been developing on windows, because of some .net
developments.
Ive been starting most new pr
Hi Alessandro
try this as well (Put these lines before and after your redirect/header
statement);
session_write_close();
header( "Location: ".$PHPcmd );
exit();
hope this helps
Angelo Zanetti
Z Logic
www.zlogic.co.za
Alessandro Rosa wrote:
>Hi to all,
>
>I got a problem while storing sessio
I agree 100% with Greg's comments for the goto() / ifsetor() discussion
on the internals list. As far as speed goes if the dev team knew of
ways to improve specific parts of the codebase (while maintaining the
rest of the features available in PHP) then I'm confident they would
make that chang
http://marc.theaimsgroup.com/?l=php-general&m=111008638014141&w=2
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Merlin wrote:
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to submit
the form.
After some googling I found captcha, but I do no
test
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Merlin wrote:
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their
forms and the human has to enter a code visible on the image to submit
the form. After some googling I found captcha, but I do not like the
ima
Hello,
I seem to be having a little bit of trouble with executing a nslookup via
PHP's passthr() function.
This:
passthru("nslookup -query=ns testing12345.nl", $returnVar);
Returns:
"Server: ns1.activedomain.nl
Address: 217.148.161.5
Aliases: 5.161.148.217.in-addr.arpa
0"
However, when I ex
On Tuesday 07 June 2005 12:05, Alessandro 'Aronnax' Rossini wrote:
> Hi, my name is Alessandro Rossini and I want to let you know the launch of
> a new project called ZNF.
> The goal of this project is to provide an open source framework for
> building PHP5 enterprise web applications. It's based o
Hi there,
I am getting more and more emails through my webforms submited by bots.
It looks like some sites liky yahoo are placing an image into their forms and
the human has to enter a code visible on the image to submit the form.
After some googling I found captcha, but I do not like the image
Matthew Weier O'Phinney wrote:
* Merlin <[EMAIL PROTECTED]>:
Hi there,
I am outputting an multidim. array. That works fine, except one thing. The first
letter of the value inside dimension 1 always gets printed.
For example:
I fill the arrays:
while ($row = mysql_fetch_object($result)){
Hi, my name is Alessandro Rossini and I want to let you know the launch of a
new project called ZNF.
The goal of this project is to provide an open source framework for building
PHP5 enterprise web applications. It's based on the Apache Struts project of
the Apache Software Foundation, available
57 matches
Mail list logo