[PHP] Returned mail: see transcript for details

2005-07-03 Thread Mail Delivery Subsystem
This message was undeliverable due to the following reason(s): Your message could not be delivered because the destination computer was unreachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likel

Re: [PHP] Re: Removing nonlatin characters

2005-07-03 Thread Rene Brehmer
Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: > On 6/29/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > I think you mean something like this: > > function stripAccents($string) { > $returnString = strtr($string, > 'àáâãäçèéêëìíîïñòóôõöšùúûüýÀÁÂÃÄÇÈÉ

Re: [PHP] Re: Removing nonlatin characters

2005-07-03 Thread Rene Brehmer
Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: > On 6/29/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > I think you mean something like this: > > function stripAccents($string) { > $returnString = strtr($string, > 'àáâãäçèéêëìíîïñòóôõöšùúûüýÀÁÂÃÄÇÈÉ

Re: [PHP] clear the page and continue

2005-07-03 Thread Fred
Outstanding James! A different approach to get a more flexible result. Fred. ""James"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Yes, you can use something like Some stuff and use > javascript to alter the element's value (the contents between the span > tags). > > document.

Re: [PHP] clear the page and continue

2005-07-03 Thread James
Yes, you can use something like Some stuff and use javascript to alter the element's value (the contents between the span tags). document.getElementById("blah").innerHTML="some new stuff" Hope that is what you wanted, James Relyea. - Original Message - From: "Fred" <[EMAIL PROTECTED]

[PHP] clear the page and continue

2005-07-03 Thread Fred
I have managed using php to: 1/ send some html to the client requesting patience 2/ execute some external process 3/ send results to the client so it appears further down the same page What I would like to do is: 1/ send some html to the client requesting patience 2/ execute some external process

[PHP] Report

2005-07-03 Thread Mail Administrator
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

Re: [PHP] Conversion of period and space for $_GET, $_REQUEST, etc. is rather senseless

2005-07-03 Thread Rasmus Lerdorf
Joe Krahn wrote: > PHP imports GET and POST data to array elements by senselessly > converting periods and spaces to underscore. The intent is to make > strings variable-name compatible for conversion directly into global > variables via import_request_variables or register_globals. > > String-to-

RE: [PHP] Group By problems

2005-07-03 Thread yangshiqi
If your action of sending email to the users is not very often, you can select email from comment into a tmp table, then make the users data table joining the temp one, and this should be more efficacious. Best regards, Shiqi Yang -Original Message- From: W Luke [mailto:[EMAIL PRO

Re: [PHP] mail:: very weird behaviour!

2005-07-03 Thread Andy Pieters
Ok, found out what was happening. It seems that if the message contains MIME syntax errors, actual behaviour of sendmail (or its php wrapper) is unspecified. Anyway, I forgot a semicolomn here and a linebreak there and whoosh! almost all of my hair pulled out! Thanks Andy -- Registered Lin

[PHP] mail:: very weird behaviour!

2005-07-03 Thread Andy Pieters
Hi all So I constructed the mail message with attachements and all, and when I echo the contents to the screen, I get the entire message as intended. But when the message is actually sent, it is NOT received the same! In one test, the base64 part contains different text from what I actually put

[PHP] Re: Help a Norwegian student!

2005-07-03 Thread Jasper Bryant-Greene
Bjørn-Erik Dale wrote: When I'm trying to open phpMyAdmin/index.php on my Apache server I get this text: "kan ikke starte mysqli tillegget, vennligst kontroller PHP-konfigurasjonen" witch is Norwegian for "can not start the myswli extension, please check the PHP-configuration" A link follows to:

[PHP] Re: setting initial vlaue of optionbox

2005-07-03 Thread Jasper Bryant-Greene
Ross wrote: value="" Keeps the value of $subject that was previously entered in the textarea even after the form is submitted with php_self(). Is this possible with the listbox?? { ?> selected>Some Option Alter to suit your needs, of course. Jasper -- PHP General Mailing List (http://

[PHP] Re: Group By problems

2005-07-03 Thread Jasper Bryant-Greene
W Luke wrote: Hi, I used to have problems with this in Cold Fusion - and I'm still struggling this time in PHP! This isn't a PHP-specific question, it's more a MySQL question. You might want to try the MySQL mailing lists if you don't get a satisfactory answer here. Very basic. Looping o

Re: [PHP] Re: Templating engines

2005-07-03 Thread Robert Cummings
On Sun, 2005-07-03 at 03:24, Burhan Khalid wrote: > Robert Cummings wrote: > > On Fri, 2005-04-29 at 23:55, Rasmus Lerdorf wrote: > > > > [--SNIPPED--] > > > > This isn't a problem for engines that compile to PHP source that has > > direct hooks into the necessary data structures that will contai

[PHP] Group By problems

2005-07-03 Thread W Luke
Hi, I used to have problems with this in Cold Fusion - and I'm still struggling this time in PHP! Very basic. Looping over 2 tables - an email table, and a data-table. I'm using * just for ease for the time being: SELECT * FROM f_c_users,f_comments WHERE fcEmail=cemail GROUP by fcEmail If the

[PHP] setting initial vlaue of optionbox

2005-07-03 Thread Ross
I want to keep the value of the listbox to submitted value. To do this when using a text area I use the code The line value="" Keeps the value of $subject that was previously entered in the textarea even after the form is submitted with php_self(). Is this possible with the listbox?? R.

[PHP] Mail System Error - Returned Mail

2005-07-03 Thread Post Office
WARNING: This e-mail has been altered by MIMEDefang. Following this paragraph are indications of the actual changes made. For more information about your site's MIMEDefang policy, contact 190.sy Administrator <[EMAIL PROTECTED]>. For more information about MIMEDefang, see: http://w

Re: [PHP] Currency stored as cents

2005-07-03 Thread Marco Tabini
On 7/3/05 1:33 AM, "Tom Rogers" <[EMAIL PROTECTED]> wrote: > function dollars2cents($value){ > $value = sprintf("%0.2f",trim($value)); > list($a,$b) = explode('.',$value); > if(floatval($value)<0) $b = $b*-1; //negative amount? > return intval($a)*100 + intval($b); > } Have you tried

Re: [PHP] Help a Norwegian student!

2005-07-03 Thread Richard Davey
Hello Bjørn-Erik, Sunday, July 3, 2005, 1:09:29 PM, you wrote: BED> for "can not start the myswli extension, BED> please check the PHP-configuration" A link follows to: BED> http://localhost/phpMyAdmin/Documentation.html#faqmysql ->> "[1.20] I receive the error "cannot load MySQL extension, pleas

[PHP] Help a Norwegian student!

2005-07-03 Thread Bjørn-Erik Dale
When I'm trying to open phpMyAdmin/index.php on my Apache server I get this text: "kan ikke starte mysqli tillegget, vennligst kontroller PHP-konfigurasjonen" witch is Norwegian for "can not start the myswli extension, please check the PHP-configuration" A link follows to: http://localhost/phpMyAdm

Re: [PHP] Re: Templating engines

2005-07-03 Thread Burhan Khalid
Robert Cummings wrote: On Fri, 2005-04-29 at 23:55, Rasmus Lerdorf wrote: Robert Cummings wrote: I don't think that templates have a dependency between the number of pages using the template and an increase in the number of functions. In fact depending on the template, and the template engine

[PHP] Message could not be delivered

2005-07-03 Thread MAILER-DAEMON
WARNING: This e-mail has been altered by MIMEDefang. Following this paragraph are indications of the actual changes made. For more information about your site's MIMEDefang policy, contact 190.sy Administrator <[EMAIL PROTECTED]>. For more information about MIMEDefang, see: http://w

Re: [PHP] Re: Templating engines

2005-07-03 Thread Burhan Khalid
Jay Blanchard wrote: [snip] and box of bending straws. [/snip] Nice. LMAO -- and now, back to the show. For those that really were looking for a xml-based templating enging, IBM's DW has one that you can download the source to. Its not PHP, but hey, its a start. Google for 'toot-o-ma