[PHP] Re: fsockopen in phpmailer and tls

2008-09-07 Thread Manuel Lemos
Hello, on 09/05/2008 12:20 AM Larry Brown said the following: I am having a ball of a time trying to figure this one out... If anyone has dealt with this before I'd love to get some morsels of wisdom from you... I am trying to connect to a postfix server I have set up remotely using smtp auth w

Re: [PHP] fsockopen in phpmailer and tls

2008-09-07 Thread Larry Brown
On Sat, 2008-09-06 at 14:53 -0400, Robert Cummings wrote: > On Sat, 2008-09-06 at 14:38 -0400, Larry Brown wrote: > > On Sat, 2008-09-06 at 14:06 -0400, Robert Cummings wrote: > > > On Sat, 2008-09-06 at 14:02 -0400, Larry Brown wrote: > > > > > > > > OK. So I broke down and re-created my mail se

[PHP] translations for PHP app

2008-09-07 Thread Shawn McKenzie
Hi All, I'm looking for professional translations from English of the following: - admin.php lang file just under 150 PHP defines - user.php lang file just under 30 PHP defines - a javascript file with about 25 single word defines - about 19 PHP files with 2 defines in each Most defines are 1 or

[PHP] Re: Sending out mass emails

2008-09-07 Thread Manuel Lemos
Hello, The right class address below is http://www.phpclasses.org/mimemessage . on 09/04/2008 10:47 AM Angelo Zanetti said the following: Hi all, We would like to send out mass emails for some of our clients, these are HTML email and text alternative for the email clients that cant read those

[PHP] Re: Sending out mass emails

2008-09-07 Thread Manuel Lemos
Hello, on 09/04/2008 10:47 AM Angelo Zanetti said the following: Hi all, We would like to send out mass emails for some of our clients, these are HTML email and text alternative for the email clients that cant read those HTML emails. We have developed some scripts to send the emails using php

[PHP] Open MSSQLCE database file on desktop

2008-09-07 Thread Kim Tse
Hi all, Is there a way to open Mssql database file foo.sdf on desktop, not through the Mssql server or ODBC source, suppose the codes like below: $link = open_datafile('uri:file:///somepath/foo.sdf'); $query_result = query('some sql query',$link); thanks for your help :D -- get along unaided.

Re: [PHP] php image and javascript include

2008-09-07 Thread Ashley Sheridan
Dreamweaver? Eclipse? Pah, it's all about using a text editor! Kate (on KDE) is my preference ;) Ash www.ashleysheridan.co.uk --- Begin Message --- Reese schreef: b wrote: javasac wrote: [lots of stuff ...] Second, at least one of the image paths is relative to your own desktop computer's

Re: [PHP] Re[2]: Path of the class file of an object

2008-09-07 Thread Ali Çevik
Hi, I guess the word "meaningless" depends on what you are trying to do. So, I guess I have to describe what I'm trying to do. The problem is, I need to pass a php object to javascript via json and then back to php again using json. However, while doing that, I lose the type of the object (becau

Re: [PHP] php image and javascript include

2008-09-07 Thread Jochem Maas
Reese schreef: b wrote: javasac wrote: [lots of stuff ...] Second, at least one of the image paths is relative to your own desktop computer's drive (why is it that this always happens on a Windows box?) > > C:/wamp/www/yojoe-web/html/site/images/box_top_rht.

Re: [PHP] php image and javascript include

2008-09-07 Thread Reese
b wrote: javasac wrote: [lots of stuff ...] Second, at least one of the image paths is relative to your own desktop computer's drive (why is it that this always happens on a Windows box?) > > C:/wamp/www/yojoe-web/html/site/images/box_top_rht.jpg PEBKAC err

Re: [PHP] php image and javascript include

2008-09-07 Thread b
javasac wrote: [lots of stuff ...] I'm guessing that was the *output* of the PHP file, not the script itself. You've got a couple different errors here. The first is that you're not creating img tags. All you have here is the path to the image. A browser isn't going to do anything with that

Re: [PHP] php image and javascript include

2008-09-07 Thread Ashley Sheridan
You generally need some PHP to have PHP errors, but you don't have any here. What was the code that actually gave you the errors? Ash www.ashleysheridan.co.uk --- Begin Message --- SPIDR var prev_Item_1d; prev_Item_1d = ''; var prev_div_It

Re: [PHP] php image and javascript include

2008-09-07 Thread Reese
javasac wrote: Where is the PHP? There's nothing between tags. Nothing between PHP short tags ( ), either. Reese -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php image and javascript include

2008-09-07 Thread Stut
On 7 Sep 2008, at 18:35, javasac wrote: I see no PHP in there. Please post the piece of PHP code you're having a problem with. -Stut -- http://stut.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Recursive Iteration over a collection of objects

2008-09-07 Thread Nathan Nobbe
On Sun, Sep 7, 2008 at 11:05 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > David Lidstone schreef: > >> Hi >> >> I am getting myself quite confused while trying to use SPL to recursively >> iterate through a collection of objects, and any help would be greatly >> appreciated! >> >> My collection of

Re: [PHP] php image and javascript include

2008-09-07 Thread javasac
SPIDR var prev_Item_1d; prev_Item_1d = ''; var prev_div_Item_1d; prev_div_Item_1d = ''; function Call_MyFunction(div_Item_1d, item_1d) { if(prev_div_Item_1d != '')

Re: [PHP] php image and javascript include

2008-09-07 Thread javasac
Thanks for the reply. here is the php file. I am using wamp server 2.0 http://www.nabble.com/file/p19360339/signin.jpg signin.jpg Ashley Sheridan-3 wrote: > > Do you have an excerpt of the PHP code you have preceeding the HTML you > are using to include the JavaScript & images? > > > Ash >

Re: [PHP] Recursive Iteration over a collection of objects

2008-09-07 Thread Jochem Maas
David Lidstone schreef: Hi I am getting myself quite confused while trying to use SPL to recursively iterate through a collection of objects, and any help would be greatly appreciated! My collection of objects is contained in a class (which I frequently use to iterate through objects stored

Re: [PHP] Length of Exception text?

2008-09-07 Thread Jochem Maas
ANR Daemon schreef: Greetings, All. I've been working on some PEAR-based app last week and I ran into problem. While I debugging app, my backtrace always trimmed at some point. First time I though it was my mistake, and switched back to standard "Exception" class. But nothing changed. If I prin

Re: [PHP] php image and javascript include

2008-09-07 Thread Ashley Sheridan
Do you have an excerpt of the PHP code you have preceeding the HTML you are using to include the JavaScript & images? Ash www.ashleysheridan.co.uk --- Begin Message --- Hi All, Strange issue here. I m including images and javascript in my php file. None of them show/work up. If i change the .ph

[PHP] php image and javascript include

2008-09-07 Thread javasac
Hi All, Strange issue here. I m including images and javascript in my php file. None of them show/work up. If i change the .php file to .html, both thing start working. So no issues with path and all. Any idea? Thanks, Sachin -- View this message in context: http://www.nabble.com/php-image-an