[PHP] tracking forwarded emails using PHP

2009-11-18 Thread Angelo Zanetti
Hi all, I want to develop a newsletter system, where by users can create newsletters and send them to recipients, that's not a problem. I want to be able to track certain things: 1. When an email is opened. I think this can be done with an img tag where the src is a php script. We can then

Re: [PHP] tracking forwarded emails using PHP

2009-11-18 Thread Angus Mann
1. Is possible. Google the term web-bug. Be prepared that it will only work if the recipient has a HTML enabled email reader AND allows downloading of images. Be prepared also that every time the email (including forwarded emails) are viewed your server gets a hit. Might equal alot of hits.

Re: [PHP] How to call a vc++ dll from a HTML form

2009-11-18 Thread Ashley Sheridan
On Wed, 2009-11-18 at 15:54 +1030, James McLean wrote: On Wed, Nov 18, 2009 at 3:21 PM, Peter pet...@egrabber.com wrote: Thanks to All. I want to call a vc++ dll from a HTML form. The dll need to be triggered on a button click in the HTML form. I want to access the dll from the

Re: [PHP] tracking forwarded emails using PHP

2009-11-18 Thread Andrew Ballard
On Wed, Nov 18, 2009 at 4:30 AM, Angus Mann an...@angusmann.com wrote: 1. Is possible. Google the term web-bug. Be prepared that it will only work if the recipient has a HTML enabled email reader AND allows downloading of images. Be prepared also that every time the email (including forwarded

Re: [PHP] tracking forwarded emails using PHP

2009-11-18 Thread Ashley Sheridan
On Wed, 2009-11-18 at 09:04 -0500, Andrew Ballard wrote: On Wed, Nov 18, 2009 at 4:30 AM, Angus Mann an...@angusmann.com wrote: 1. Is possible. Google the term web-bug. Be prepared that it will only work if the recipient has a HTML enabled email reader AND allows downloading of images. Be

Re: [PHP] tracking forwarded emails using PHP

2009-11-18 Thread Andrew Ballard
On Wed, Nov 18, 2009 at 9:07 AM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I  think that people removing themselves from mailing lists is a little extreme. I wouldn't remove myself just because I thought I was being tracked. You might not, but some people will. One (of many) of the

Re: [PHP] tracking forwarded emails using PHP

2009-11-18 Thread Ashley Sheridan
On Wed, 2009-11-18 at 09:23 -0500, Andrew Ballard wrote: On Wed, Nov 18, 2009 at 9:07 AM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I think that people removing themselves from mailing lists is a little extreme. I wouldn't remove myself just because I thought I was being

[PHP] Noob question: Making search results clickable.

2009-11-18 Thread Paul Jinks
Hi all I'm building a fairly basic php/mySql site but I'm running into problems due to my total lack of experience. I have a database of videos - each has a title, transcript, description and one or more topics. So far I can search the database by topic (using a drop-down menu), like this: ?php

Re: [PHP] Noob question: Making search results clickable.

2009-11-18 Thread Gary Smith
Paul Jinks wrote: Hi all I'm building a fairly basic php/mySql site but I'm running into problems due to my total lack of experience. I have a database of videos - each has a title, transcript, description and one or more topics. So far I can search the database by topic (using a drop-down

Re: [PHP] Noob question: Making search results clickable.

2009-11-18 Thread Paul M Foster
On Wed, Nov 18, 2009 at 03:04:13PM +, Paul Jinks wrote: Hi all I'm building a fairly basic php/mySql site but I'm running into problems due to my total lack of experience. I have a database of videos - each has a title, transcript, description and one or more topics. So far I can

Re: [PHP] Noob question: Making search results clickable.

2009-11-18 Thread Shawn McKenzie
Gary Smith wrote: Paul Jinks wrote: Hi all I'm building a fairly basic php/mySql site but I'm running into problems due to my total lack of experience. I have a database of videos - each has a title, transcript, description and one or more topics. So far I can search the database by topic

Re: [PHP] Noob question: Making search results clickable.

2009-11-18 Thread Gary Smith
Shawn McKenzie wrote: Gary Smith wrote: And changing your query accordingly. For the first piece Gary has it right, but your query needs to include the id also. Yeah, as I mentioned, he'd need to change the query accordingly, either to select id,title or select * Cheers, Gary

Re: [PHP] Noob question: Making search results clickable.

2009-11-18 Thread Shawn McKenzie
Make sure to reply all... Paul Jinks wrote: Thanks to everyone for replying, it's much appreciated. Thanks especially for the final piece of the puzzle, Shawn, I don't think I was going to find it on my own - the display I have in mind is a little different, but I think I can figure it out.

[PHP] dynamic meta tag and title app?

2009-11-18 Thread Jack S
Hello All, Does anyone have a reference to a program that may be out there to help with using a single header.php for a site, but then dynamically loads different keywords , titles etc based on what page is including the header file? Sample: If home page include it knows the title and other

Re: [PHP] Lightweight web server for Windows?

2009-11-18 Thread O. Lavell
Jonathan Tapicer wrote: Try nginx (http://nginx.net/), very light, has a Windows binary distribution and can be configured easily for PHP. Sorry for my late reply, and thank you for this suggestion. I am now trying nginx and it looks very promising so far. It seems to be both a very simple

[PHP] Re: Lightweight web server for Windows?

2009-11-18 Thread O. Lavell
Manuel Lemos wrote: Hello, on 11/15/2009 07:00 PM O. Lavell said the following: [..] My initial thought was to install Lighttpd under Cygwin, but perhaps I would be missing out on some great little server program that I have not yet heard about. I use lighttpd on Linux, but there

Re: [PHP] Lightweight web server for Windows?

2009-11-18 Thread O. Lavell
Daevid Vincent wrote: Out of curiosity, if this is just for coding, and you're already a Linux guy, why not just install a lightweight linux flavor on the laptop instead of WF/XP? This is a rather prehistoric (Windows 98 era) laptop, a Compaq Armada 1700 with 266 MHz CPU. Somewhere along the

[PHP] Support for your boning!The Bat! (v3.99.24) Professional

2009-11-18 Thread tgrantham
Hi php-general@lists.php.net! ??a? ?a???, ?? ??a???p?? ??? ??? ???p? ??a??a ? ???p??, ?? a?? ??? ?a? ?a?? ??a?? SexFunsClub.com. p? ?a? ?? ? ? ?? ? ??p?? ?pa a???a. ?a? ?? ?p?? ?pa ?p???, ?? ??

RE: [PHP] dynamic meta tag and title app?

2009-11-18 Thread Daevid Vincent
I usually just use some JS in the footer.php of the page to go back and change the title based upon other stuff, say the user's name or whatever: script language=JavaScript type=text/javascript parent.document.title = ?= PRODUCT_NAME ? :: ?= $PAGE_TITLE ?; /script -Original Message-

RE: [PHP] dynamic meta tag and title app?

2009-11-18 Thread Ashley Sheridan
Rather than use Javascript, which would limit your site to only those browsers that support Javascript, have it enabled and aren't using any plugins (like Noscript). You could just use an array with the details in, set the type of page as one of the first things in your script, and then output

[PHP] Re: dynamic meta tag and title app?

2009-11-18 Thread Shawn McKenzie
Jack S wrote: Hello All, Does anyone have a reference to a program that may be out there to help with using a single header.php for a site, but then dynamically loads different keywords , titles etc based on what page is including the header file? Sample: If home page include it knows

RE: [PHP] dynamic meta tag and title app?

2009-11-18 Thread Daevid Vincent
...right, because people can really use a site today without JS enabled... please. welcome to the 90's. I challenge you to turn off JS on pretty much any site with any amount of complexity. bah. But yes, you could shove it in your title tags, but that's not always convenient. it depends on how

RE: [PHP] dynamic meta tag and title app?

2009-11-18 Thread Ashley Sheridan
On Wed, 2009-11-18 at 17:40 -0800, Daevid Vincent wrote: ...right, because people can really use a site today without JS enabled... please. welcome to the 90's. I challenge you to turn off JS on pretty much any site with any amount of complexity. bah. But yes, you could shove it in your

RE: [PHP] dynamic meta tag and title app?

2009-11-18 Thread Daevid Vincent
Actually, you can make a site today that uses JAvascript to enhance functionality. I'd say a title fits that category. You can live without it. Something as simple as a title for a page shouldn't be relying on Javascript to function! Shouldn't = I agree. Sometimes the way a page is

[PHP] Re: tracking forwarded emails using PHP

2009-11-18 Thread Manuel Lemos
Hello, on 11/18/2009 06:32 AM Angelo Zanetti said the following: 1. When an email is opened. I think this can be done with an img tag where the src is a php script. We can then track when that script is called and from whom. 2. Track if the email was forwarded, not sure how this is done but