Re: [PHP] HTML & plain text in Outlook 2007

2010-02-05 Thread Richard Quadling
On 4 February 2010 16:44, Skip Evans wrote: > Hey all, > > First, let me say thanks for all the advice on Magento, and especially to > Ryan who has used the beast and gave some great advice on skinning, links to > some good docs and a book just for my designer. We'll be using and I'm > looking for

Re: [PHP] Facebook PHP compiler

2010-02-05 Thread German Geek
Yes. Totally agree. Would like to try asap. ++Tim Hinnerk Heuer++ http://www.ihostnz.com On 3 February 2010 10:15, Adam Richardson wrote: > Looks very promising !!! > > On Tue, Feb 2, 2010 at 1:12 PM, Robert Cummings >wrote: > > > Cesar D. Rodas wrote: > > > >> Hello, > >> > >> Have you guys

Re: [PHP] HTML & plain text in Outlook 2007

2010-02-05 Thread Phpster
Ire ently needed to do this for a client as well. I took their word doc and converted it to HTML with open office. This created a template that I just do some search and replace to fill in the criteria. This has worked very well with outlook and hotmail and gmail. Not sure if it will fit you

Re: [PHP] HTML & plain text in Outlook 2007

2010-02-05 Thread Ashley Sheridan
On Fri, 2010-02-05 at 08:03 -0500, Phpster wrote: > Ire ently needed to do this for a client as well. I took their word > doc and converted it to HTML with open office. This created a template > that I just do some search and replace to fill in the criteria. > > This has worked very well with

RE: [PHP] How to change a filename for download (e.g. jpeg, pdf etc.)

2010-02-05 Thread SED
Hi, I finally got the time to test your solutions, the following is the best solution and causes a minimum stress on the server and a decent security. header('Content-type: application/pdf'); header('Content-Disposition: attachment; filename="downloaded.pdf"'); readfile('o

Re: [PHP] Facebook PHP compiler

2010-02-05 Thread ebhakt
Thanks for th einfo man!! On Fri, Feb 5, 2010 at 3:35 AM, German Geek wrote: > Yes. Totally agree. Would like to try asap. > ++Tim Hinnerk Heuer++ > > http://www.ihostnz.com > > > On 3 February 2010 10:15, Adam Richardson wrote: > > > Looks very promising !!! > > > > On Tue, Feb 2, 2010 at 1:12

Re: [PHP] HTML & plain text in Outlook 2007

2010-02-05 Thread Robert Cummings
Ashley Sheridan wrote: On Thu, 2010-02-04 at 13:44 -0500, Robert Cummings wrote: What about signing yourself up to some newsletters to see how they do it? Looking at the ones I get from Facebook as an example, they use the boundary codes you mentioned, and I can't see anything particularly spe

[PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Mary Anderson
Hi, I am writing code in PHP which generates HTML script. My app is fairly complex. Twice in the development of the application I have run into a problem with submit buttons which pick up the wrong url. Instead of call the url for that submit button, it appears to call the url for the fir

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Joseph Thayne
This is actually a javascript issue rather than a PHP issue. What is happening is that the action of the form is what is being submitted. The action never changes. What you need to do is have the javascript change the action as well as submit the form (which means you will need to move it to

Re: [PHP] Appalling Dreamweaver performance

2010-02-05 Thread Lenin
Try the NetBeans then

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Ashley Sheridan
On Fri, 2010-02-05 at 14:33 -0600, Joseph Thayne wrote: > This is actually a javascript issue rather than a PHP issue. What is > happening is that the action of the form is what is being submitted. > The action never changes. What you need to do is have the javascript > change the action as

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Joseph Thayne
"What you maybe ought to consider is using several submit buttons, and give each a name and a value. That way, your PHP script can check for a specifically named variable sent from the form. That way, you keep many people happy, and your site still works perfectly." The problem with doing it t

Re: [PHP] Appalling Dreamweaver performance

2010-02-05 Thread haliphax
On Fri, Feb 5, 2010 at 3:59 PM, Lenin wrote: > Try the NetBeans then > Personally, I've found that Programmer's Notepad 2 is a pretty capable editor, and has some nice features such as auto-closing elements when working with markup languages (HTML, XML, XSL, XHTML, etc.). http://www.pnotepad.or

Re: [PHP] OpenID

2010-02-05 Thread haliphax
On Mon, Feb 1, 2010 at 9:54 PM, Michael A. Peters wrote: > Daevid Vincent wrote: > >> >> >>> -Original Message- >>> From: Al [mailto:n...@ridersite.org] Sent: Monday, February 01, 2010 >>> 12:09 PM >>> To: php-general@lists.php.net >>> Subject: [PHP] OpenID >>> >>> This is a bit off subje

Re: [PHP] OpenID

2010-02-05 Thread Nate Benes
There is a openID mailing list set up if anyone has any technical questions, gene...@openid.net -Nate On Fri, Feb 5, 2010 at 4:57 PM, haliphax wrote: > On Mon, Feb 1, 2010 at 9:54 PM, Michael A. Peters wrote: > > > Daevid Vincent wrote: > > > >> > >> > >>> -Original Message- > >>> Fr

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Robert Cummings
Joseph Thayne wrote: "What you maybe ought to consider is using several submit buttons, and give each a name and a value. That way, your PHP script can check for a specifically named variable sent from the form. That way, you keep many people happy, and your site still works perfectly." The p