Re: [PHP] Hotmail and junk mail

2006-10-02 Thread J R
if i get you right. your email to hotmail goes to junk/spam mail? i think i encounter this way way back when our email domain got listed into spam emailer :D so better check if your domain is on that list. i forgot what was the URL. anyway just an idea. hth, John On 10/2/06, Stefan van der L

[PHP] array size in bytes

2006-10-02 Thread Roman Rumisek
Hi, Exists in PHP function returning array size in bytes ? (For saving array into shared memory without serialize.) Thnx. Roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] newbie php tutorial question

2006-10-02 Thread Satyam
Is the code in a file with a .php extension? Is that extension configured to be processed by the PHP interpreter? Are you requesting the page via the web server or just double clicking on the file and viewing it locally? Your output is what the code would show in a browser without passing thr

[PHP] WebMail client

2006-10-02 Thread Peter Lauri
Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? /Peter

Re: [PHP] WebMail client

2006-10-02 Thread Jyrki Laurila
http://www.roundcube.net/ On 10/2/06, Peter Lauri <[EMAIL PROTECTED]> wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? /Peter -- PHP G

Re: [PHP] WebMail client

2006-10-02 Thread clive
Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? roundcube /Peter -- Regards, Clive -- PHP General Mailin

Re: [PHP] WebMail client

2006-10-02 Thread Børge Holen
openwebmail. a slimlined and easy goin' without hassle On Monday 02 October 2006 10:30, Peter Lauri wrote: > Hi, > > > > Do you have any suggestion on WebMail clients written in PHP that is good > and easy to install? > > > > Horde IMP and SquirrelMail is two that I found. > > > > Are there any AJ

Re: [PHP] WebMail client

2006-10-02 Thread Google Kreme
On 02 Oct 2006, at 02:57 , Jyrki Laurila wrote: http://www.roundcube.net/ That's pretty nice. Is there a mailing list for it? -- You know, in a world in which Bush and Blair can be nominated for the Nobel Peace Prize, "for having dared to take the necessary decision to launch a war on I

Re: [PHP] WebMail client

2006-10-02 Thread Jyrki Laurila
http://lists.roundcube.net/ On 10/2/06, Google Kreme <[EMAIL PROTECTED]> wrote: On 02 Oct 2006, at 02:57 , Jyrki Laurila wrote: > http://www.roundcube.net/ That's pretty nice. Is there a mailing list for it? -- You know, in a world in which Bush and Blair can be nominated for the Nobel Peace

[PHP] Re: WebMail client

2006-10-02 Thread Man-wai Chang
> Do you have any suggestion on WebMail clients written in PHP that is good > and easy to install? do a search in http://freshmeat.net -- .~. Might, Courage, Vision, SINCERITY. http://www.linux-sxs.org / v \ Simplicity is Beauty! May the Force and Farce be with you! /( _ )\ (Ubuntu 6.06)

Re: [PHP] WebMail client

2006-10-02 Thread Martin Marques
On Mon, 2 Oct 2006, Peter Lauri wrote: Are there any AJAX supporting client? RoundCube webmail, but it's in development still. -- 21:50:04 up 2 days, 9:07, 0 users, load average: 0.92, 0.37, 0.18 - Lic. Martín Marqués | SEL

[PHP] Re: Re: Re: Frustrated trying to get help from your site

2006-10-02 Thread Michelle Konzack
Am 2006-09-27 17:39:25, schrieb David Robley: > 88 tons!! Point us to an image of that please. Currently not availlable but it is an ex Pershing II Transporter from the US-Army manufactured by the german Enterprise MAN. Greetings Michelle Konzack Systemadministrator Tamay Dogan Netwo

[PHP] a function for retuned vatiable

2006-10-02 Thread Ross
What I need is a quick way to assign variable names to the same value of the row name. example.. $query= "SELECT * from $table_name WHERE sname=='hulford'"; $result = mysql_query($query) or die('Error, query failed'); while ($row=mysql_fetch_array($result)) { $email = $row['email']; $name=

[PHP] Client Computer Registration

2006-10-02 Thread Rahul S. Johari
Ave, I saw this at the Key.Com website for Keybank Customers. When you go to their website to login to view your account, they ask you to register your computer for the first time. Once your computer is registered, you can access the account using that computer. You can choose to Not register that

Re: [PHP] a function for retuned vatiable

2006-10-02 Thread Jochem Maas
Ross wrote: > What I need is a quick way to assign variable names to the same value of the > row name. > > example.. > > $query= "SELECT * from $table_name WHERE sname=='hulford'"; > > $result = mysql_query($query) or die('Error, query failed'); > while ($row=mysql_fetch_array($result)) { >

RE: [PHP] a function for retuned vatiable

2006-10-02 Thread Peter Lauri
Not actually sure what you want, but this might do it :) $j = 0; While($Row = mysql_fetch_array($Result)) { $email[$j] = $Row['email']; ... ... $j++; } -Original Message- From: Ross [mailto:[EMAIL PROTECTED] Sent: Monday, October 02, 2006 7:09 PM To: php-

[PHP] Re: newbie php tutorial question

2006-10-02 Thread zerof
srdaniel escreveu: I setup Apache 2.2.3.0 and PHP 5.1.6.6. When I run this PHP file: PHP Test Hello World'; ?> - Start here: http://www.educar.pro.br/ - zerof -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] a function for retuned vatiable

2006-10-02 Thread David Tulloh
extract() - http://www.php.net/extract - does what you are after. However often it's easier to handle the array as you have a better idea of what variables are available, particularily if you are working with multiple tables. Ross wrote: > What I need is a quick way to assign variable names to th

Re: [PHP] Client Computer Registration

2006-10-02 Thread Stut
Rahul S. Johari wrote: I saw this at the Key.Com website for Keybank Customers. When you go to their website to login to view your account, they ask you to register your computer for the first time. Once your computer is registered, you can access the account using that computer. You can choose t

Re: [PHP] alternatively

2006-10-02 Thread David Tulloh
Ross wrote: > How can I get this line to work > > $mail_body .= " sans-serif\"> Title: $row['title'] "; > > The $row['title'] variable is the problem. Drop the quotes when you are inside a quoted string. $mail_body .= "... Title: $row[title] "; -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Client Computer Registration

2006-10-02 Thread Rahul S. Johari
Ave, Yes I doubted MAC address could be recorded so easily, and I highly doubted Key.Com's application had anything to do with a MAC Address. If it's Cookie-Based, then in my opinion it's more of a 'show' then any actual, vital security implementation. I have everything from Cookies, IP Filter,

[PHP] PHP 5, PDO in debian

2006-10-02 Thread Martin Marques
Does anyone have an idea on when PDO is going to be available in Debian? -- 21:50:04 up 2 days, 9:07, 0 users, load average: 0.92, 0.37, 0.18 - Lic. Martín Marqués | SELECT 'mmarques' || Centro de Telemática| '@'

Re: [PHP] PHP 5, PDO in debian

2006-10-02 Thread David Tulloh
Martin Marques wrote: > Does anyone have an idea on when PDO is going to be available in Debian? > not a clue... http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=348882 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread Brad Bonkoski
Ross wrote: $mail_body .= "sans-serif\"> stripslashes($mail_text) "; this just returns {stripslashes(it\'s a testss} $mail_body .=" ".stripslashes($mail_text)." "; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5, PDO in debian

2006-10-02 Thread Martin Marques
On Mon, 2 Oct 2006, David Tulloh wrote: Martin Marques wrote: Does anyone have an idea on when PDO is going to be available in Debian? not a clue... http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=348882 Saw that already yesterday, but it's from the begining of this year. It's so frustra

Re: [PHP] WebMail client

2006-10-02 Thread Jim Jagielski
www.telaen.org On Oct 2, 2006, at 4:30 AM, Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? /Peter -- PHP General Mailin

Re: [PHP] alternatively

2006-10-02 Thread Jochem Maas
David Tulloh wrote: > Ross wrote: >> How can I get this line to work >> >> $mail_body .= "> sans-serif\"> Title: $row['title'] "; >> >> The $row['title'] variable is the problem. > > Drop the quotes when you are inside a quoted string. > $mail_body .= "... Title: $row[title] "; does that actually

RE: [PHP] Strange error in PHP/MySQL

2006-10-02 Thread Brad Fuller
> if (mysql_query($sqlInsertUser, $conn)) > $messagesqlInsertUser = 'Success...'; > else > $messagesqlInsertUser = 'Error: ' . mysql_error(); > $result = mysql_query($sqlInsertUser); I see this being executed twice. -> mysql_query($sqlInsertUser); I believe that is your problem. Chang

Re: [PHP] Strange error in PHP/MySQL

2006-10-02 Thread Dave Goodchild
Do you have the Host field set to unique? -- http://www.web-buddha.co.uk http://www.projectkarma.co.uk

[PHP] [ANNOUNCE] Suhosin 0.9.6 - Advanced PHP Protection System

2006-10-02 Thread Stefan Esser
_ _ ___ _ _| |__ ___ ___(_)_ __ / __| | | | '_ \ / _ \/ __| | '_ \ \__ \ |_| | | | | (_) \__ \ | | | | |___/\__,_|_| |_|\___/|___/_|_| |_| v0

Re: [PHP] PHP 5, PDO in debian

2006-10-02 Thread Paul Scott
On Mon, 2006-10-02 at 10:33 -0300, Martin Marques wrote: > On Mon, 2 Oct 2006, David Tulloh wrote: > > > Martin Marques wrote: > >> Does anyone have an idea on when PDO is going to be available in Debian? use www.dotdeb.org sources list. Its bleeding edge, but works OK. --Paul All Email origin

RE: [PHP] alternatively

2006-10-02 Thread Ford, Mike
On 02 October 2006 15:20, Jochem Maas wrote: > David Tulloh wrote: > > Ross wrote: > > > How can I get this line to work > > > > > > $mail_body .= " > > sans-serif\"> Title: $row['title'] "; > > > > > > The $row['title'] variable is the problem. > > > > Drop the quotes when you are inside a quo

[PHP] Formatting Question

2006-10-02 Thread Toby Osbourn
Sorry to plague you with a question that should have a simple answer, but I can't find said answer anywhere (probably looking for the wrong things in the wrong places!) Basically I want to allow a user to input a string via a form into a database, I have the code to do that and it works almost 10

Re: [PHP] Formatting Question

2006-10-02 Thread Dave Goodchild
How is the field set in the database - is it CHAR/VARCHAR or TEXT? -- http://www.web-buddha.co.uk http://www.projectkarma.co.uk

Re: [PHP] alternatively

2006-10-02 Thread Jochem Maas
Ford, Mike wrote: > On 02 October 2006 15:20, Jochem Maas wrote: > >> David Tulloh wrote: >>> Ross wrote: How can I get this line to work $mail_body .= ">>> sans-serif\"> Title: $row['title'] "; The $row['title'] variable is the problem. >>> Drop the quotes when you are in

Re: [PHP] alternatively

2006-10-02 Thread Dave Goodchild
Just use {$row['title']} or ${row['title']}, it will save you headaches. I may be a purist, but it's also satisfying as it still indicates the array element is a string rather than a constant. Anyway, the above two methods are the preferred way I think.

Re: [PHP] Formatting Question

2006-10-02 Thread tedd
At 6:08 PM +0100 10/2/06, Toby Osbourn wrote: Sorry to plague you with a question that should have a simple answer, but I can't find said answer anywhere (probably looking for the wrong things in the wrong places!) Basically I want to allow a user to input a string via a form into a database, I

[PHP] Excel Spreadsheet Writer

2006-10-02 Thread Jef Sullivan
Greetings all, I am having some problems with the Excel Spreadsheet Writer and I am hoping that I can get some help from this group. I am getting garbled text in my spreadsheet when I go to run the php file. I created a general file to see if I could narrow the problem down. No luck so far

Re: [PHP] Formatting Question

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 12:08 pm, Toby Osbourn wrote: > Sorry to plague you with a question that should have a simple answer, > but I > can't find said answer anywhere (probably looking for the wrong things > in > the wrong places!) > > Basically I want to allow a user to input a string via a form

Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 8:09 am, Ross wrote: $mail_body .= "" . stripslashes($mail_text) . ""; HOWEVER: The fact that you are calling "stripslashes" at all tells me that either: You've screwed up with Magic Quotes being on and calling addslashes (or mysql_[real_]escape_string) so you've essen

Re: [PHP] alternatively

2006-10-02 Thread Richard Lynch
Take out the ' for array keys inside of " "...$row[title]..." Which *does* seem kind of whack, honestly, but so it goes... On Mon, October 2, 2006 7:13 am, Ross wrote: > How can I get this line to work > > $mail_body .= " sans-serif\"> Title: $row['title'] "; > > The $row['title'] variable is

Re: [PHP] alternatively

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 9:19 am, Jochem Maas wrote: > David Tulloh wrote: >> $mail_body .= "... Title: $row[title] "; > > does that actually work? not that I care - I still consider it wrong. It's a Documented Feature... How wrong can it be?... [shrug] Though I confess I've got more than a few n

Re: [PHP] a function for retuned vatiable

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 7:08 am, Ross wrote: > What I need is a quick way to assign variable names to the same value > of the > row name. > > example.. > > $query= "SELECT * from $table_name WHERE sname=='hulford'"; > > $result = mysql_query($query) or die('Error, query failed'); > while ($row=m

Re: [PHP] web browser shows blank page when accessing *.php file

2006-10-02 Thread Anna Barnes
Dear All I just thought I'd drop you a line about how I fixed this in the end. I had an idea that because the ical I was loading had about 24months worth of data it was taking too long so I just created a new one and published that. It now works, however, it does stall sometimes in which

Re: [PHP] Client Computer Registration

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 7:07 am, Rahul S. Johari wrote: > I saw this at the Key.Com website for Keybank Customers. When you go > to > their website to login to view your account, they ask you to register > your > computer for the first time. Once your computer is registered, you can > access the ac

Re: [PHP] Formatting Question

2006-10-02 Thread tedd
At 3:51 PM -0500 10/2/06, Richard Lynch wrote: Don't "pollute" your raw data (the newlines) with a very media-specific formatting code ("") -- Keep your raw data pure and clean, and format for the destination when you send it there, not when you store it. There *might* be some egregious examples

Re: [PHP] WebMail client

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 9:14 am, Jim Jagielski wrote: http://php.net/imap :-) PS Hey, does anybody know why none of these guys are smart enough to show me the "To: " line in that listing of email in my Inbox?... Cuz I could save myself a heck of a lot of time if I just knew for sure for sure wh

Re: [PHP] array size in bytes

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 3:07 am, Roman Rumisek wrote: > Exists in PHP function returning array size in bytes ? > (For saving array into shared memory without serialize.) No. And you could maybe write one, if it was all strings in the array, but you're gonna be screwed when PHP 6 with Unicode come

RE: [PHP] Client Computer Registration

2006-10-02 Thread bruce
actually richar, and others... depending on what they're doing, it's quite alot to it. if the bank is being agressive, they might be requiring a client app to be downloaded and is then able to communicate with the client app, thereby getting a great deal more information. a few companies have beg

Re: [PHP] Re: Re: Re: Frustrated trying to get help from your site

2006-10-02 Thread Richard Lynch
On Sun, October 1, 2006 5:42 pm, Michelle Konzack wrote: > Am 2006-09-27 17:39:25, schrieb David Robley: > >> 88 tons!! Point us to an image of that please. > > Currently not availlable but it is an ex Pershing II Transporter > from the US-Army manufactured by the german Enterprise MAN. Please tel

Re: [PHP] Problems creating a user in MySQL

2006-10-02 Thread Richard Lynch
On Sun, October 1, 2006 3:48 pm, Deckard wrote: > I have this code: > --- > // use mysql database > mysql_select_db('mysql') or die('Cannot select MySQL database.' . > mysql_error()); > > // insert new user in mysql user table > $sqlInsert

Re: [PHP] Formatting Question

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 4:13 pm, tedd wrote: > Why not use nl2br() to show the data in the browser and leave the > data "as-is" in the dB? Apparently I typed too much, cuz that's exactly what I said, or meant to say... -- Some people have a "gift" link here. Know what I want? I want you to buy a

Re: [PHP] newbie php tutorial question

2006-10-02 Thread Richard Lynch
On Sun, October 1, 2006 1:27 pm, srdaniel wrote: > I setup Apache 2.2.3.0 and PHP 5.1.6.6. > > When I run this PHP file: > > > > >PHP Test > > > Hello World'; ?> > > > > > Any ideas why I get this for output? > > > Hello World >

Re: [PHP] selling country domains

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 11:28 pm, jenny mathew wrote: > hello friends, > i know this is a php list but i am confused thats why i am asking a > bit off > topic.i have few .be domains and now i want to sell ,but i donot know > where > to sell them.can you tell me the name of sites where i can sell

Re: [PHP] Hotmail and junk mail

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 4:07 pm, eqla3.com eqla3.com wrote: > hello every one :) > > what ever i do emails i sent got in the junk mail > > i fixed the header > add spf record to the domain > using mail server with specific IP > fix all dns error > > nothing work > > any one get it correct ? Com

Re: [PHP] exec returns no output?

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 7:22 am, Nick Wilson wrote: > i've searched and racked my brains, checked config files and all sorts > but cannot work out why the following command would give me an empty > array (and certainly not actually perform the requested command...) > > exec('scp -v -i /id_dsa fi

Re: [PHP] exec returns no output?

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 9:33 am, Nick Wilson wrote: > Tha'ts exactly what i think it's doing. The -i specifies an identity > file according to the man page for scp so i would have hoped that > would > take care of it (as i cant work out how to generate an identity for > the > apache user itself)

Re: [PHP] moving file from one server to another

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 4:29 am, Nick Wilson wrote: > i have thttpd (a very light weight http server) running as an image > server on one box, and users uploading images to another php/apache > powered box. > > I need to let users upload to the regular LAMP box, but then copy the > image over to

Re: [PHP] moving file from one server to another

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 5:25 am, Nick Wilson wrote: > yes. i'd considered rsync but the file needs to be available on the > image server immediately. scp'ing it should work, but of course imnow > having fun with the apache user and try9ing to work out how to give it > an ssh profile :) Here's y

Re: [PHP] Rapid application development

2006-10-02 Thread Richard Lynch
On Sat, September 30, 2006 12:44 am, Ahmad Al-Twaijiry wrote: > What is the best RAD (Rapid application development) do you use for > PHP to develop an *advance* application in few days or weeks ? > > I like programming but one this that I hate is the first stage of > programming when you start cre

Re: [PHP] How to effectuate translations

2006-10-02 Thread Richard Lynch
My Parrot sez: I think "gettext" is the answer to your question. I have no direct knowledge of this. On Fri, September 29, 2006 10:38 pm, AR wrote: > Hi, > > I'm coding this software that has several files for several languages, > so that users can chose the one that suits him. > > My question i

[PHP] set cookie with non-english

2006-10-02 Thread Ahmad Al-Twaijiry
Hi everyone in my PHP code I use the following command to set a cookie with non-english word (UTF-8) : @setcookie ("UserName",$Check[1]); and in my html page I get this cookie using javascript :