Re: [PHP] What's this image tag for?

2007-01-05 Thread Richard Lynch
It makes it look like you displayed an advertisement, even though you shrunk it down to 1x1, so it's not generally noticeable to the user. Often used for "tracking" a user across domains for legitimate and illegitimate purposes, and for racking up pennies for showing ads without actually showing a

Re: [PHP] What's this image tag for?

2007-01-05 Thread Skip Evans
Stut wrote: That's really a question for the ad company to answer according to their policy. You'll probably an answer in their instructions somewhere. We can't give you an authoritative answer on a specific company's policy. Good point. I finally was able to track down their contact info a

Re: [PHP] What's this image tag for?

2007-01-05 Thread Stut
Skip Evans wrote: I thought it would be something like that. So here's another question I'd appreciate thoughts on: If I have ten of these links on a page, linking to ten different stores, should I include one of these IMG links on each link, just as they say to cut and paste? Or should there

Re: [PHP] What's this image tag for?

2007-01-05 Thread Skip Evans
I thought it would be something like that. So here's another question I'd appreciate thoughts on: If I have ten of these links on a page, linking to ten different stores, should I include one of these IMG links on each link, just as they say to cut and paste? Or should there only be one per

Re: [PHP] What's this image tag for?

2007-01-05 Thread Simon Forster
On 5 Jan 2007, at 14:38, Skip Evans wrote: http://click.linksynergy.com/fs-bin/click? id=5sJlsTOpnzE&offerid=115126.1505&type=4&subid=0">alt="Sharper Image" border="0" src="http:// www.sharperimagespecials.com/banners/Promos/11_Nov06/ fshproplus_1106_125x125.gif">height="1" src="http://ad

Re: [PHP] What's this in my dir list?

2006-05-18 Thread Jochem Maas
tedd wrote: At 10:58 AM -0400 5/18/06, John Nichel wrote: tedd wrote: Hi Gang: When I list one of my directories, via: echo(""); system("ls -l"); echo(""); I get: -rw-r--r-- 1 ancientstones psacln 6980 Apr 28 18:46 ancientstones.gif -rw-r--r-- 1 ancientstones psacln 2090 May 14 10:10

Re: [PHP] What's this in my dir list?

2006-05-18 Thread tedd
At 10:58 AM -0400 5/18/06, John Nichel wrote: tedd wrote: Hi Gang: When I list one of my directories, via: echo(""); system("ls -l"); echo(""); I get: -rw-r--r-- 1 ancientstones psacln 6980 Apr 28 18:46 ancientstones.gif -rw-r--r-- 1 ancientstones psacln 2090 May 14 10:10 as.css -rw-r--r

Re: [PHP] What's this in my dir list?

2006-05-18 Thread John Nichel
tedd wrote: Hi Gang: When I list one of my directories, via: echo(""); system("ls -l"); echo(""); I get: -rw-r--r-- 1 ancientstones psacln 6980 Apr 28 18:46 ancientstones.gif -rw-r--r-- 1 ancientstones psacln 2090 May 14 10:10 as.css -rw-r--r-- 1 ancientstones psacln 658 May 2 14:59 b

Re: [PHP] What's this in my dir list?

2006-05-18 Thread cajbecu
yup, psacln is the group of the user ancientstones who`s owner of the files. tedd wrote: > Hi Gang: > > When I list one of my directories, via: > > echo(""); > system("ls -l"); > echo(""); > > I get: > > -rw-r--r-- 1 ancientstones psacln 6980 Apr 28 18:46 ancientstones.gif > -rw-r--r-- 1 an

RE: [PHP] What's this

2004-06-17 Thread Jay Blanchard
[snip] This has me confused, is this Java or a php class, a constant or what?, i have never seen this kind of action. In what type of file will i find the "S_MODE". [/snip] A quick Google indicates .NET -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] What's this talk about ASP to PHP?

2003-07-10 Thread Philip Olson
On 10 Jul 2003, Jonathan Villa wrote: > I've read somewhere about some asptophp convertor/tool/methodology...?? > Don't know what it is, that's why I'm asking. > > I've been asked to help out on a project which might include some > already developed basic ASP code. I would rather do it in PHP.

Re: [PHP] What's this _FILE junk?

2003-03-17 Thread Liam Gibbs
> Is your form enctype set? That might be it and I think it's it and OH yes that was it. Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What's this _FILE junk?

2003-03-17 Thread CPT John W. Holmes
Is enable file uploads turned on in php.ini?? ---John Holmes... - Original Message - From: "Pete James" <[EMAIL PROTECTED]> To: "Liam Gibbs" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 3:33 PM Subject: Re: [PHP] What'

Re: [PHP] What's this _FILE junk?

2003-03-17 Thread Richard Whitney
A couple of other things: Some versions or settings of PHP don't like the $_FILE thing. If your enctype is set try just print '[]'.$imprintpicture; The brackets are just to print SOMETHING to the page if $imprintpicture produces nothing HTH Quoting Pete James <[EMAIL PROTECTED]>: ### Is your f

Re: [PHP] What's this _FILE junk?

2003-03-17 Thread Pete James
Is your form enctype set? Like so: Liam Gibbs wrote: This line: when clicking submit, produces nothing. I print_r $_FILES["imprintpicture"], I try to echo $_FILES["imprintpicture"]["name"] or ["tmp_name"] and nothing comes up. Any reason? -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] what's this???

2001-11-04 Thread Matt Friedman
http://www.php.net/manual/en/language.oop.php This is what you want to read. Matt. - Original Message - From: "Christian C." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 04, 2001 7:16 PM Subject: [PHP] what's this??? > Hello :c) > > im looking at some code i f

RE: [PHP] what's this???

2001-11-04 Thread Martin Towell
"$this" refers to the current object so "$this->mode" refers to the variable inside the current object called "mode" Hope this helps Martin -Original Message- From: Christian C. [mailto:[EMAIL PROTECTED]] Sent: Monday, November 05, 2001 12:17 PM To: [EMAIL PROTECTED] Subject: [PHP] what