Hello Richard,
Friday, March 11, 2005, 3:34:01 PM, you wrote:
RL> The mail() function is designed for quickie one-off emails, not
RL> sending out thousands. Hell, it can't even handle dozens, not
RL> reliably, at least not on some hardware/connections.
I've used it to send a little over 3,000.
O
Hi
I have two pages
1)
A form with a rich text box and a submit button.
2)
A page which receives the value from the rich text box and emails out to
addresses in a column in a table
For the rich text box its default value is a message saying: "Click th
Hello Sebastian,
It'd very useful for those who want to help you out, a good
explanation of your error.
For example, you're not quoting some error or some error logs that you
found related to this behavior.
For instance, if you refer to:
http://uk.php.net/mail
You'll see there's a note explainin
Jochem Maas wrote:
Richard Lynch wrote:
php.net/dom
??
Like this?
---
try {
$dom = new DOMDocument();
$config =
$dom->appendChild($dom->importNode(dom_import_simplexml($this->configXML),true));
$config->appendChild( $dom->createElement(($mode?
'softactive':'active'))
);
$this->configXML = simp
Hello,
on 03/11/2005 05:48 PM Redmond Militante said the following:
i need some advice on making a bulk emailer script more robust.
what i'm currently doing:
-using mysql_fetcharray() to loop through an array of query results
-for each iteration of the loop, get an email address from the current
Richard Lynch wrote:
php.net/dom
??
Like this?
---
try {
$dom = new DOMDocument();
$config =
$dom->appendChild($dom->importNode(dom_import_simplexml($this->configXML),true));
$config->appendChild( $dom->createElement(($mode? 'softactive':'active'))
);
$this->configXML = simplexml_import_dom($config
Ashley M. Kirchner wrote:
Mário Gamito wrote:
...
>> Does anyone knows how to do this ?
>
> $parts = explode(' ', $fullName);
> $shortenedName = $parts[0].' '.$parts[count($parts)-1];
> ?>
>
This might solve one problem. What about people who have names like
'Pablo Ricardo del Rey' where you
Jim,
i had only minor issues, but it builds fine otherwise.
"Jim Plush" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Has anyone successfully built php5 using visual studio.net ? or is VC6
> still only supported?
>
> thanks,
> Jim
--
PHP General Mailing List (http://www.php
On Fri, Mar 11, 2005 at 09:57:46AM -0800, Richard Lynch wrote:
> > well the trouble is not in the writing at the end of the request, which
> > would likely only be a single query and therefore not need a transaction
> > in itself. the trouble is the lack of locking out other requests from
> > readi
I intend to run a lot of PHP scripts, all the time, on a Linux machine.
The scripts were designed for CLI environment, since they will handle
the entire management of the machine, being started by init and then
effectively and completely taking over.
I'm wondering whether starting up the PHP inte
Hi,
it appears mail() stopped working on my server. i recall it worked
previously. since i haven't used mail() in a while i dont recall when it
stopped working. running php 4.3.10
php.ini is default path for send mail which is the correct path for the
server.. anything else i should be looking fo
Has anyone successfully built php5 using visual studio.net ? or is VC6
still only supported?
thanks,
Jim
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
what you need is to make a recursive function, that is a function that
calls itself
like
function open_dir()
{
if(is_dir($my_dir))
{
open_dir();
} else {
// read files here
}
}
basically you're saying... I'm reading the top level directory, are you
a file? ok I'll re
Greetings,
My company is developing a CE 5.0 device, and I am searching for someone who
can compile php5 and eventually mysql to run on it.
If required we can supply platform builder, an sdk for our device, and even
the actual hardware so you can do testing.
A standard NDA will need to be sign
On Mar 11, 2005, at 3:30 AM, Kim Madsen wrote:
Or better: I put my query in a link like show customers and I´ve
got NO clue about the settings in the mysql db, so this gets "funny"
show customers
show customers
Any application that trusts user input to this extent is in trouble
from the start. W
Check out the linux utility "lsof". This can be used to determine if
any process has a file open. So you can use it for locking, and it is
detected at the OS level.
Unfortunately, it still doesn't prevent someone from editing the file
whilst ignoring whether or not some other process is already
At 11:54 PM 3/11/2005, Stephen Johnson wrote:
Just a quick and dirty solution - but couldn't you explode the name into
an array and use the first and last array fields ?
$name_array = explode(" ",$name);
$short_name = "$name_array[0] " . end($name_array);
And a dozen other ways to do it I'm sure.
Marquez Design wrote:
I am trying to display information in an html table from a MySQL data base.
I can do this rather easily, however, I am trying to multiply that table
with as many entries there are in the database.
Can someone point me in the right direction or give me an example of how I
can a
Ah. Well, then my bug report is probably of no matter. Even looking
further into SSH's options, there's something for controlling the TTY
allocated for SSH, but it only controls what TTY SSH allocates, there is
no means for turning tty allocation off completely. I was still holding
out some hop
19 matches
Mail list logo