Re: [PHP] Re: problem with slash / characters

2008-10-01 Thread Tanner Postert
figured it out. later on in the code theres some formatting for a specific values that the address_2 field was accidentally falling into. On Wed, Oct 1, 2008 at 12:24 PM, Tanner Postert <[EMAIL PROTECTED]>wrote: > just did some further testing, and even if I remove the special characte

Re: [PHP] Re: problem with slash / characters

2008-10-01 Thread Tanner Postert
. On Wed, Oct 1, 2008 at 12:18 PM, Tanner Postert <[EMAIL PROTECTED]>wrote: > very, strange. > > if I change it to c / o Company XYZ ( with spaces between each character) > it becomes: c 1 o Company XYZ. > if I change it to c#o Company XYZ it becomes c1o Company XYZ > >

Re: [PHP] Re: problem with slash / characters

2008-10-01 Thread Tanner Postert
very, strange. if I change it to c / o Company XYZ ( with spaces between each character) it becomes: c 1 o Company XYZ. if I change it to c#o Company XYZ it becomes c1o Company XYZ On Wed, Oct 1, 2008 at 12:16 PM, Al <[EMAIL PROTECTED]> wrote: > > > Tanner Postert wrote: >

[PHP] problem with slash / characters

2008-10-01 Thread Tanner Postert
ignore previous. sorry. I'm trying to display values from a database, the values come from the database like this: [0] => Array ( [id] => 5 [order_id] => 10 [key] => ship_to_name [value] => John Anderson ) [1] => Array ( [id] => 6 [order_id] => 10 [key] => ship_to_address

[PHP] problem with slash / characters

2008-10-01 Thread Tanner Postert
I'm pulling a value from a database, and adding it to an array. The values come from the database like this: [0]

Re: [PHP] Upload Tracker.

2007-07-17 Thread Tanner Postert
i use a program called upload progress meter, it can be downloaded here: http://pdoru.from.ro/upload-progress-meter/ I just wrote an ajax function to return the % of the download, and filled a div on each upload. It depends on how often you poll for the %, but most likely it won't be a smooth tr

Re: [PHP] mail function from and reply to address problem

2007-07-13 Thread Tanner Postert
thanks, thats exactly where I went. looks like i'm on the right track. On 7/13/07, Tijnema <[EMAIL PROTECTED]> wrote: On 7/13/07, Tanner Postert <[EMAIL PROTECTED]> wrote: > figured it out... > > the domain in question's dns is set to CNAME to the main domain

Re: [PHP] mail function from and reply to address problem

2007-07-13 Thread Tanner Postert
ll have to comb through the sendmail configuration and find out if I can reverse this behavior. On 7/13/07, Tanner Postert <[EMAIL PROTECTED]> wrote: mail function returns 1(true) whether or not i'm sending to the new virtual host domain name or any random domain name. turns out sendm

Re: [PHP] mail function from and reply to address problem

2007-07-13 Thread Tanner Postert
this new domain except for http virtual host config? hmm. On 7/13/07, Tanner Postert <[EMAIL PROTECTED]> wrote: apache is definitely listed in the trusted users, as I mentioned, I can send from dozens of other domains, its just one specific domain that I can't. i'll let you know the re

Re: [PHP] mail function from and reply to address problem

2007-07-13 Thread Tanner Postert
ynch wrote: > On Thu, July 12, 2007 6:33 pm, Tanner Postert wrote: >> I am currently running >> >> PHP 5.1.4 >> Fedora Core 5 >> >> i'm trying to exectute the following test script. >> >> > $to = '[EMAIL PROTECTED]'; >> $s

[PHP] mail function from and reply to address problem

2007-07-12 Thread Tanner Postert
I am currently running PHP 5.1.4 Fedora Core 5 i'm trying to exectute the following test script. i have about 10 or so different virtual hosts running on this machine, and if i use any of them for the from & reply-to addresses, it works fine, or even if i use domains I don't control like aol.

Re: [PHP] Re: int to string

2006-04-05 Thread Tanner Postert
if there was an easier solution. thanx for the help though. On 4/5/06, Al <[EMAIL PROTECTED]> wrote: > > Tanner Postert wrote: > > I don't think it's built in, so I was wondering ya'll would recommend as > the > > best way to convert int to string, not basic

Re: [PHP] Re: int to string

2006-04-05 Thread Tanner Postert
if there was an easier solution. thanx for the help though. On 4/5/06, Al <[EMAIL PROTECTED]> wrote: > > Tanner Postert wrote: > > I don't think it's built in, so I was wondering ya'll would recommend as > the > > best way to convert int to string, not basic

[PHP] int to string

2006-04-05 Thread Tanner Postert
I don't think it's built in, so I was wondering ya'll would recommend as the best way to convert int to string, not basic type casting, but converting to the english word the int represents. Something like this: 5 = "Five" or 20 = "Twenty"