On Thu, Mar 5, 2009 at 1:48 AM, Manuel Lemos wrote:
> Hello Jason,
>
> on 03/05/2009 03:17 AM Jason Cipriani said the following:
Thanks. I actually had a look at the HttpRequest source code, and I
can see the logic where it switches to multipart encoding if files are
present but it
Hello Jason,
on 03/05/2009 03:17 AM Jason Cipriani said the following:
>>> Thanks. I actually had a look at the HttpRequest source code, and I
>>> can see the logic where it switches to multipart encoding if files are
>>> present but it actually appears that it's not possible to force it to
>>> do
On Thu, Mar 5, 2009 at 12:48 AM, Manuel Lemos wrote:
> Hello,
>
> on 03/05/2009 02:31 AM Jason Cipriani said the following:
>> Thanks. I actually had a look at the HttpRequest source code, and I
>> can see the logic where it switches to multipart encoding if files are
>> present but it actually ap
Hello,
on 03/05/2009 02:31 AM Jason Cipriani said the following:
> Thanks. I actually had a look at the HttpRequest source code, and I
> can see the logic where it switches to multipart encoding if files are
> present but it actually appears that it's not possible to force it to
> do that. It's so
On Wed, Mar 4, 2009 at 7:12 PM, Shawn McKenzie wrote:
> Jason Cipriani wrote:
>> On Wed, Mar 4, 2009 at 2:10 PM, Shawn McKenzie wrote:
>>> Jason Cipriani wrote:
Is there a way to force PECL to use multipart/form-data encoding for
all post fields added with addPostFields, even when you a
On Wed, Mar 4, 2009 at 7:01 PM, Michael A. Peters wrote:
> Robert Cummings wrote:
>
>> On Wed, 2009-03-04 at 15:21 -0800, Michael A. Peters wrote:
>>
>>> Robert Cummings wrote:
>>>
>>> To punt what is repeated over and over during runtime to a single
compilation phase when building the temp
Actually no; you said "You only need to escape data coming from a user
going in to your database."
Using a known variable in my app is not going to cause an sql injection
problem.
switch ($value) {
case 'x':
$my_field = 1;
break;
default:
$my_field = 0;
}
an insert here with
On Wed, Mar 4, 2009 at 7:50 PM, Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 22:46, VamVan wrote:
> >
> > Hey Guys I have Question. I just noticed that once the whoami thread
> > reached 100 posts it automatically created another thread. Is this
> intended?
> >
> > Can a discussion be only 100
On Wed, Mar 4, 2009 at 22:46, VamVan wrote:
>
> Hey Guys I have Question. I just noticed that once the whoami thread
> reached 100 posts it automatically created another thread. Is this intended?
>
> Can a discussion be only 100 post's long??
>
> Just out of curiosity :)
In Gmail, yes. That
On Wed, Mar 4, 2009 at 7:35 PM, Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 20:28, Shawn McKenzie wrote:
> >
> > Well, the ground beef is actually tartar and it goes without saying that
> > it would be topped with foie gras and grape chutney with caviar on the
> side.
>
> with gold-pla
On Wed, Mar 4, 2009 at 20:28, Shawn McKenzie wrote:
>
> Well, the ground beef is actually tartar and it goes without saying that
> it would be topped with foie gras and grape chutney with caviar on the side.
with gold-plated platinum flakes and diamond-dust salt.
--
daniel.br...@paras
On Wed, Mar 4, 2009 at 20:10, Al wrote:
>
> $obligatoryFieldNotPresent=null;
>
> foreach($_POST, as $value)
> {
> if(!empty($value)continue;
Parse error. ;-P
--
daniel.br...@parasane.net || danbr...@php.net
http://www.parasane.net/ || http://www.pilotpig.net/
50% Off All Shared Hos
Kyle Terry wrote:
On Wed, Mar 4, 2009 at 6:55 PM, Chris wrote:
Eric Butera wrote:
On Wed, Mar 4, 2009 at 8:18 PM, Chris wrote:
You only need to escape data coming from a user going in to your
database.
If you put user input into your database and pull it back out, it's
still raw user in
On Wed, Mar 4, 2009 at 6:55 PM, Chris wrote:
> Eric Butera wrote:
>
>> On Wed, Mar 4, 2009 at 8:18 PM, Chris wrote:
>>
>>> You only need to escape data coming from a user going in to your
>>> database.
>>>
>>
>> If you put user input into your database and pull it back out, it's
>> still raw use
Eric Butera wrote:
On Wed, Mar 4, 2009 at 8:18 PM, Chris wrote:
You only need to escape data coming from a user going in to your database.
If you put user input into your database and pull it back out, it's
still raw user input. Never trust any piece of data ever, whether it
comes from a sup
On Wed, Mar 4, 2009 at 6:27 PM, Eric Butera wrote:
> On Wed, Mar 4, 2009 at 8:54 PM, Michael A. Peters wrote:
> > Eric Butera wrote:
> >
> >>
> >> So here's some examples of bad behavior.
> >>
> >> = Database =
> >> Bad:
> >> $name = mysql_real_escape_string($_POST['name'], $link);
> >> myql_que
On Wed, Mar 4, 2009 at 8:54 PM, Michael A. Peters wrote:
> Eric Butera wrote:
>
>>
>> So here's some examples of bad behavior.
>>
>> = Database =
>> Bad:
>> $name = mysql_real_escape_string($_POST['name'], $link);
>> myql_query("INSERT INTO foo (`name`) VALUES ('". $name ."')");
>>
>> $name now co
On Wed, Mar 4, 2009 at 8:18 PM, Chris wrote:
> You only need to escape data coming from a user going in to your database.
If you put user input into your database and pull it back out, it's
still raw user input. Never trust any piece of data ever, whether it
comes from a superglobal OR within yo
Robert Cummings wrote:
On Wed, 2009-03-04 at 15:21 -0800, Michael A. Peters wrote:
Robert Cummings wrote:
To punt what is repeated over and over during runtime to a single
compilation phase when building the template target. To simplify the use
of parameters so that they can be used in arbitra
Eric Butera wrote:
So here's some examples of bad behavior.
= Database =
Bad:
$name = mysql_real_escape_string($_POST['name'], $link);
myql_query("INSERT INTO foo (`name`) VALUES ('". $name ."')");
$name now contains slashes which means it is corrupt and not able to
be echo'd without a strips
Shawn McKenzie wrote:
> PJ wrote:
>> Shawn McKenzie wrote:
>>> Robert Cummings wrote:
>>>
On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
> Whatever you do, please, please, please, for the love of all that is
> holy, please, do not vilify potatoes! ...or the Iris
PJ wrote:
> Shawn McKenzie wrote:
>> Robert Cummings wrote:
>>
>>> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>>>
Whatever you do, please, please, please, for the love of all that is
holy, please, do not vilify potatoes! ...or the Irish :-)
>>> Potatoes
On Wed, 2009-03-04 at 15:21 -0800, Michael A. Peters wrote:
> Robert Cummings wrote:
>
> >
> > To punt what is repeated over and over during runtime to a single
> > compilation phase when building the template target. To simplify the use
> > of parameters so that they can be used in arbitrary ord
PJ wrote:
Sorry, but I have been waylaid by other posts... :'(
and have not had the opportunity to finish my quest and I posted to
mysql but they are not very helpful
I see I was not very clear below and will annotate below.
But the problem is still there, I cannot figure out how to sanitize
finally found the problem... wrong names for string and this is what now
verifies correctly
if (strlen($_POST["titleIN"]) == 0 ) {
$obligatoryFieldNotPresent = 1;
}
elseif (strlen($_POST["first_nameIN"]) == 0 ) {
$obligatoryFieldNotPresent = 1;
}
elsei
On Wed, Mar 4, 2009 at 8:04 PM, PJ wrote some stuff...
You should do a little reading on some of the keywords that have been presented.
Specifically you don't sanitize a value into your db. You escape it.
Prepared statements are a way of doing this that makes it a bit harder
to mess up. You ha
PJ wrote:
PJ wrote:
Daniel Brown wrote:
On Wed, Mar 4, 2009 at 17:51, PJ wrote:
elseif ($obligatoryFieldNotPresent = 1) {
$obligatoryFieldNotPresent = 0;
}
Are you certain you only wanted a single equal operator in the
last elseif() condition? F
Shawn McKenzie wrote:
> Robert Cummings wrote:
>
>> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>>
>>> Whatever you do, please, please, please, for the love of all that is
>>> holy, please, do not vilify potatoes! ...or the Irish :-)
>>>
>> Potatoes are best served slic
Sorry, but I have been waylaid by other posts... :'(
and have not had the opportunity to finish my quest and I posted to
mysql but they are not very helpful
I see I was not very clear below and will annotate below.
But the problem is still there, I cannot figure out how to sanitize with
mysql_r
PJ wrote:
> PJ wrote:
>> Daniel Brown wrote:
>>
>>> On Wed, Mar 4, 2009 at 17:51, PJ wrote:
>>>
>>>
>>>
elseif ($obligatoryFieldNotPresent = 1) {
$obligatoryFieldNotPresent = 0; }
>>> Are you certain you only wanted a single equal operator in the
>>> last elseif() condi
Shawn McKenzie wrote:
Chris wrote:
PJ wrote:
Daniel Brown wrote:
On Wed, Mar 4, 2009 at 17:51, PJ wrote:
elseif ($obligatoryFieldNotPresent = 1) {
$obligatoryFieldNotPresent = 0;
}
Are you certain you only wanted a single equal operator in the
last elseif() condi
On Wed, 2009-03-04 at 23:21 +, Ashley Sheridan wrote:
> On Wed, 2009-03-04 at 18:14 -0500, PJ wrote:
> > Ashley Sheridan wrote:
> > > On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote:
> > >
> > >> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote:
> > >>
> > >>> Whilst we
Robert Cummings wrote:
> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>> Whatever you do, please, please, please, for the love of all that is
>> holy, please, do not vilify potatoes! ...or the Irish :-)
>
> Potatoes are best served sliced into sticks, pan-fried, covered in
> cheese cu
PJ wrote:
> Daniel Brown wrote:
>
>> On Wed, Mar 4, 2009 at 17:51, PJ wrote:
>>
>>
>>>elseif ($obligatoryFieldNotPresent = 1) {
>>>$obligatoryFieldNotPresent = 0;
>>>}
>>>
>>>
>> Are you certain you only wanted a single equal operator in the
>> last e
Chris wrote:
> PJ wrote:
>> Daniel Brown wrote:
>>> On Wed, Mar 4, 2009 at 17:51, PJ wrote:
>>>
elseif ($obligatoryFieldNotPresent = 1) {
$obligatoryFieldNotPresent = 0;
}
>>> Are you certain you only wanted a single equal operator in the
>>> last el
PJ wrote:
Daniel Brown wrote:
On Wed, Mar 4, 2009 at 17:51, PJ wrote:
elseif ($obligatoryFieldNotPresent = 1) {
$obligatoryFieldNotPresent = 0;
}
Are you certain you only wanted a single equal operator in the
last elseif() condition? Further, are you sure it shou
Ashley Sheridan wrote:
> On Wed, 2009-03-04 at 17:40 -0500, PJ wrote:
>
>> Paul M Foster wrote:
>>
>>> On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote:
>>>
>>>
>>>
Shawn McKenzie wrote:
> PJ wrote:
>
>
>
>> Dani
Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 17:51, PJ wrote:
>
>>elseif ($obligatoryFieldNotPresent = 1) {
>>$obligatoryFieldNotPresent = 0;
>>}
>>
>
> Are you certain you only wanted a single equal operator in the
> last elseif() condition? Further, are you sure
Ashley Sheridan wrote:
> On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote:
>
>> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote:
>>
>>> Whilst we're on the subject, what about cows, pigs and sheep, which are
>>> the biggest contributors to global warming through their, erm,
Jason Cipriani wrote:
> On Wed, Mar 4, 2009 at 2:10 PM, Shawn McKenzie wrote:
>> Jason Cipriani wrote:
>>> Is there a way to force PECL to use multipart/form-data encoding for
>>> all post fields added with addPostFields, even when you are not
>>> calling addPostFile to add a file?
>> Try: setCont
On Wed, Mar 4, 2009 at 2:10 PM, Shawn McKenzie wrote:
> Jason Cipriani wrote:
>> Is there a way to force PECL to use multipart/form-data encoding for
>> all post fields added with addPostFields, even when you are not
>> calling addPostFile to add a file?
>
> Try: setContentType()
Thanks! But, I t
On Wed, 2009-03-04 at 18:14 -0500, PJ wrote:
> Ashley Sheridan wrote:
> > On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote:
> >
> >> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote:
> >>
> >>> Whilst we're on the subject, what about cows, pigs and sheep, which are
> >>> the
On Wed, 2009-03-04 at 18:16 -0500, PJ wrote:
> Ashley Sheridan wrote:
> > On Wed, 2009-03-04 at 17:40 -0500, PJ wrote:
> >
> >> Paul M Foster wrote:
> >>
> >>> On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote:
> >>>
> >>>
> >>>
> Shawn McKenzie wrote:
>
>
On Wed, 2009-03-04 at 23:02 +, Ashley Sheridan wrote:
> On Wed, 2009-03-04 at 17:40 -0500, PJ wrote:
> > Yuck. But then there are people who are more resistant to crap than
> > cockroaches. But we will not outlast them!
> > You might try to get informed...
> > Unfortunately, Americans are a sad
Robert Cummings wrote:
To punt what is repeated over and over during runtime to a single
compilation phase when building the template target. To simplify the use
of parameters so that they can be used in arbitrary order with default
values. To allow for the encapsulation of complex content in t
On Wed, 2009-03-04 at 17:40 -0500, PJ wrote:
> Paul M Foster wrote:
> > On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote:
> >
> >
> >> Shawn McKenzie wrote:
> >>
> >>> PJ wrote:
> >>>
> >>>
> Daniel Brown wrote:
>
>
> > On Wed, Mar 4, 2009 at 10:42, PJ
On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote:
> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote:
> >
> > Whilst we're on the subject, what about cows, pigs and sheep, which are
> > the biggest contributors to global warming through their, erm, gases?
> > Global warming is a hug
On Wed, Mar 4, 2009 at 17:51, PJ wrote:
> elseif ($obligatoryFieldNotPresent = 1) {
> $obligatoryFieldNotPresent = 0;
> }
Are you certain you only wanted a single equal operator in the
last elseif() condition? Further, are you sure it should even be an
elseif() and not a str
Robert Cummings wrote:
> On Wed, 2009-03-04 at 17:43 -0500, PJ wrote:
>
>> Robert Cummings wrote:
>>
>>> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>>>
>>>
Whatever you do, please, please, please, for the love of all that is
holy, please, do not vilify pota
This is probably a mysql question, but their list is rather dull - I
think they don't appreciate my humor. Beside this list is fun ... and
informative.
Anyway, I can't figure this out. I am trying to verify inputs on a form
and even if I have all the required fields right, I still get the error
tha
On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote:
>
> Whilst we're on the subject, what about cows, pigs and sheep, which are
> the biggest contributors to global warming through their, erm, gases?
> Global warming is a huge problem, so I call upon all vegetarians to eat
> as much meat as p
On Wed, 2009-03-04 at 17:43 -0500, PJ wrote:
> Robert Cummings wrote:
> > On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
> >
> >> Whatever you do, please, please, please, for the love of all that is
> >> holy, please, do not vilify potatoes! ...or the Irish :-)
> >>
> >
> > Potat
Hello,
on 03/04/2009 03:33 PM Jason Cipriani said the following:
> I am trying to submit a request to an HTTP server with
> multipart/form-data encoded data. I'm using PECL's HttpRequest
> (although I'm open to alternatives). I am using PHP5.
>
> I noticed that if you call addPostFile to add a fi
Robert Cummings wrote:
> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>
>> Whatever you do, please, please, please, for the love of all that is
>> holy, please, do not vilify potatoes! ...or the Irish :-)
>>
>
> Potatoes are best served sliced into sticks, pan-fried, covered in
Paul M Foster wrote:
> On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote:
>
>
>> Shawn McKenzie wrote:
>>
>>> PJ wrote:
>>>
>>>
Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>
>
>
>
>
>
>> Ooooh, boy now this is
Hans Schultz schreef:
> Thanks for reply, I completely understood your answer even in previous
> thread, but you should understand few very simple things1. I am not working
> alone, so I can't make other people use tools I use (eclipse + PDT at the
> moment)
> 2. even if somehow I manage to do n
Ashley Sheridan wrote:
> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>
>> PJ wrote:
>>
>>> Shawn McKenzie wrote:
>>>
PJ wrote:
> Daniel Brown wrote:
>
>
>> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>>
>
On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
>
> Whatever you do, please, please, please, for the love of all that is
> holy, please, do not vilify potatoes! ...or the Irish :-)
Potatoes are best served sliced into sticks, pan-fried, covered in
cheese curds, and then finally doused in
Shawn McKenzie wrote:
> PJ wrote:
>
>> Shawn McKenzie wrote:
>>
>>> PJ wrote:
>>>
>>>
Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>
>
>
>> Right on. Good comments.
>> No offense taken and
Robert Cummings wrote:
> On Wed, 2009-03-04 at 16:16 -0500, PJ wrote:
>
>> Shawn McKenzie wrote:
>>
>>> PJ wrote:
>>>
>>>
Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>
>
>
>> Right on. Good c
On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote:
> Shawn McKenzie wrote:
> > PJ wrote:
> >
> >> Daniel Brown wrote:
> >>
> >>> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
> >>>
> Ooooh, boy now this is really serious... >:o
> I think your ignorance will be forgiven, maybe! And this is not m
On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote:
> PJ wrote:
> > Shawn McKenzie wrote:
> >> PJ wrote:
> >>
> >>> Daniel Brown wrote:
> >>>
> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>
>
> > Right on. Good comments.
> > No offense taken and none inte
PJ wrote:
> Shawn McKenzie wrote:
>> PJ wrote:
>>
>>> Daniel Brown wrote:
>>>
On Wed, Mar 4, 2009 at 10:42, PJ wrote:
> Right on. Good comments.
> No offense taken and none intended.
> I am enoying the list and will continue to participate, if i may.
>
for FILE in $LIST
do
cp $FILE $FILE.bak
done
which works as long as you can guarantee that none your file names
contain spaces ... ;)
Which he already said:
Note that in both of these examples, filenames with spaces in them will
blow the whole thing up :(
;)
--
Postgresql & php
On Wed, 2009-03-04 at 16:16 -0500, PJ wrote:
> Shawn McKenzie wrote:
> > PJ wrote:
> >
> >> Daniel Brown wrote:
> >>
> >>> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
> >>>
> >>>
> Right on. Good comments.
> No offense taken and none intended.
> I am enoying the list
Shawn McKenzie wrote:
> PJ wrote:
>
>> Daniel Brown wrote:
>>
>>> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>>>
>>>
Right on. Good comments.
No offense taken and none intended.
I am enoying the list and will continue to participate, if i may.
I have learned a g
mike schreef:
> On Wed, Mar 4, 2009 at 4:01 AM, Jochem Maas wrote:
>> ..not an internals question me thinks ... redirecting to generals mailing
>> list
>
> Actually, I do think it is somewhat internals related.
internals is about engine development. always ask on the generals list
first, you ca
Thanks for reply, I completely understood your answer even in previous thread,
but you should understand few very simple things1. I am not working alone, so I
can't make other people use tools I use (eclipse + PDT at the moment)
2. even if somehow I manage to do number 1 we also have some legacy
_
Use Messenger to talk to your IM friends, even those on Yahoo!
http://ideas.live.com/programpage.aspx?versionId=7adb59de-a857-45ba-81cc-685ee3e858fe
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://ww
> Subject: Re: [PHP] How Much Data Can Be Written to a Database In One
> Instance?
> From: rob...@interjinn.com
> To: aj...@alumni.iu.edu
> CC: php-general@lists.php.net
> Date: Wed, 4 Mar 2009 15:26:38 -0500
>
> On Wed, 2009-03-04 at 15:05 -0500, Alice Wei wrote:
> > Hi,
> >
> > I am work
> Subject: Re: [PHP] How Much Data Can Be Written to a Database In One
> Instance?
> From: rob...@interjinn.com
> To: aj...@alumni.iu.edu
> CC: php-general@lists.php.net
> Date: Wed, 4 Mar 2009 15:26:38 -0500
>
> On Wed, 2009-03-04 at 15:05 -0500, Alice Wei wrote:
> > Hi,
> >
> > I am work
On Wed, Mar 4, 2009 at 15:26, Robert Cummings wrote:
>
> See this setting in your php.ini:
>
> memory_limit = ???M
Also let us know what you're using for the database and how you're
doing it. You mention that the .dat files are 4-5MB, but don't say if
that's the database you're using, or if
On Wed, 2009-03-04 at 15:05 -0500, Alice Wei wrote:
> Hi,
>
> I am working on a series of long files that contain 4 or 5 MB each, each of
> them is encoded in UTF-8 saved as .dat format.
> However, I have noticed that when I do insert statements, the file only
> reads up to around 1MB and
On Wed, Mar 4, 2009 at 15:07, Ashley Sheridan wrote:
>>
> Yeah, been crazily busy with both my regular job and freelance stuff. I
> think I'm booked up to Armageddon now :-/
Good for you. It means you're definitely doing something right.
--
daniel.br...@parasane.net || danbr...@php.net
ht
On Wed, 2009-03-04 at 09:02 -0500, Karl St-Jacques wrote:
> Hello people.
>
> I have some trouble with an upload script. It was working until the last 2
> weeks.
>
> Whenever I tried to upload a file to a remote server, the $_FILES array is
> empty. I print global at start of the script there
Hi,
I am working on a series of long files that contain 4 or 5 MB each, each of
them is encoded in UTF-8 saved as .dat format.
However, I have noticed that when I do insert statements, the file only reads
up to around 1MB and then would stop. If I split the file into 3 or 4 files,
that w
On Wed, 2009-03-04 at 15:02 -0500, Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 15:03, Ashley Sheridan
> wrote:
> > On Wed, 2009-03-04 at 10:23 -0500, Daniel Brown wrote:
> >> Secondly, if you are getting a different response from Google,
> >> Sally, then you didn't use the same input
> >
> > I'd
On Wed, Mar 4, 2009 at 15:03, Ashley Sheridan wrote:
> On Wed, 2009-03-04 at 10:23 -0500, Daniel Brown wrote:
>> Secondly, if you are getting a different response from Google,
>> Sally, then you didn't use the same input
>
> I'd beg to differ. It's well known that Google gives out different
> resu
On Wed, 2009-03-04 at 10:23 -0500, Daniel Brown wrote:
> Secondly, if you are getting a different response from Google,
> Sally, then you didn't use the same input
I'd beg to differ. It's well known that Google gives out different
results based on geographical location and previous search history
On Wed, 2009-03-04 at 11:45 -0800, mike wrote:
> On Wed, Mar 4, 2009 at 4:01 AM, Jochem Maas wrote:
> > ..not an internals question me thinks ... redirecting to generals mailing
> > list
>
> Actually, I do think it is somewhat internals related.
>
> I want to know from the internals/experts ang
On Wed, 2009-03-04 at 08:02 -0500, Bastien Koert wrote:
> On Wed, Mar 4, 2009 at 2:10 AM, Paul Scott wrote:
>
> > On Wed, 2009-03-04 at 10:09 +0530, Chetan Rane wrote:
> > > I am using ob_start() in my application. However I am getting this error
> > > about headers already sent.
> > >
> >
> > _A
On Wed, Mar 4, 2009 at 4:01 AM, Jochem Maas wrote:
> ..not an internals question me thinks ... redirecting to generals mailing list
Actually, I do think it is somewhat internals related.
I want to know from the internals/experts angle if this is a good
function to be relying on, or if it is one
On Wed, 2009-03-04 at 12:15 -0700, Nathan Nobbe wrote:
> On Wed, Mar 4, 2009 at 11:51 AM, Robert Cummings wrote:
>
> > On Wed, 2009-03-04 at 12:46 -0600, Shawn McKenzie wrote:
> > > Robert Cummings wrote:
> > > > On Wed, 2009-03-04 at 10:55 -0600, Shawn McKenzie wrote:
> > > >> Robert Cummings wro
Thodoris wrote:
Didn't have the time to read the whole thread. Sorry for being so lame.
Obviously, or you would have known that this thread has very little if
anything to do with whoami! :-)
Indeed nonetheless it will be something useful for the archives (at
least I think that).
On Wed, Mar 4, 2009 at 11:51 AM, Robert Cummings wrote:
> On Wed, 2009-03-04 at 12:46 -0600, Shawn McKenzie wrote:
> > Robert Cummings wrote:
> > > On Wed, 2009-03-04 at 10:55 -0600, Shawn McKenzie wrote:
> > >> Robert Cummings wrote:
> > >>> On Tue, 2009-03-03 at 21:18 -0600, Shawn McKenzie wrote
Jason Cipriani wrote:
> I am trying to submit a request to an HTTP server with
> multipart/form-data encoded data. I'm using PECL's HttpRequest
> (although I'm open to alternatives). I am using PHP5.
>
> I noticed that if you call addPostFile to add a file, PECL will send
> the file, and all other
2009/3/4 PJ
> Stuart wrote:
> > Cracking response Dan, and I agree fully with most of it. A while back
> > I was a far more active contributor to the PHP lists than I am now
> > (promotion == more responsibility == less spare time) and the reason I
> > do it is because it never seems like work -
On Wed, 2009-03-04 at 12:46 -0600, Shawn McKenzie wrote:
> Robert Cummings wrote:
> > On Wed, 2009-03-04 at 10:55 -0600, Shawn McKenzie wrote:
> >> Robert Cummings wrote:
> >>> On Tue, 2009-03-03 at 21:18 -0600, Shawn McKenzie wrote:
> Matthew Croud wrote:
> > Hello,
> >
> > First
Robert Cummings wrote:
> On Wed, 2009-03-04 at 10:55 -0600, Shawn McKenzie wrote:
>> Robert Cummings wrote:
>>> On Tue, 2009-03-03 at 21:18 -0600, Shawn McKenzie wrote:
Matthew Croud wrote:
> Hello,
>
> First post here, I'm in the process of learning PHP , I'm digesting a
> few
Thodoris wrote:
> Didn't have the time to read the whole thread. Sorry for being so lame.
Obviously, or you would have known that this thread has very little if
anything to do with whoami! :-)
--
Thanks!
-Shawn
http://www.spidean.com
--
PHP General Mailing List (http://www.php.net/)
To unsubs
On Wed, Mar 4, 2009 at 13:31, PJ wrote:
> am I vindicated ;-)
Eh.
Whether or not it is true in practice, in theory it certainly
sounds plausible to have varying results. However, your argument,
verbatim, wasn't entirely with merit. ;-P
All in all, sure. At the least, it shows th
PJ wrote:
> Daniel Brown wrote:
>> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>>
>>> Right on. Good comments.
>>> No offense taken and none intended.
>>> I am enoying the list and will continue to participate, if i may.
>>> I have learned a great deal already and really do appreciate the help.
>>
I am trying to submit a request to an HTTP server with
multipart/form-data encoded data. I'm using PECL's HttpRequest
(although I'm open to alternatives). I am using PHP5.
I noticed that if you call addPostFile to add a file, PECL will send
the file, and all other post parameters, with multipart/f
Stuart wrote:
> Cracking response Dan, and I agree fully with most of it. A while back
> I was a far more active contributor to the PHP lists than I am now
> (promotion == more responsibility == less spare time) and the reason I
> do it is because it never seems like work - it's fun!!
>
> But I fee
Daniel Brown wrote:
> On Wed, Mar 4, 2009 at 10:42, PJ wrote:
>
>> Right on. Good comments.
>> No offense taken and none intended.
>> I am enoying the list and will continue to participate, if i may.
>> I have learned a great deal already and really do appreciate the help.
>>
>
> So y
This really needs some explanation
I found this on the web:
with it there was the comment "the direction of those single-quotes matters"
(WHY ?)
and it works
But this (_*FROM THE PHP MANUAL***_ * - exec()* executes the given
/command/ ) does not,
COPIED AND PASTED:
| |
What is going on he
On Wed, 2009-03-04 at 10:55 -0600, Shawn McKenzie wrote:
> Robert Cummings wrote:
> > On Tue, 2009-03-03 at 21:18 -0600, Shawn McKenzie wrote:
> >> Matthew Croud wrote:
> >>> Hello,
> >>>
> >>> First post here, I'm in the process of learning PHP , I'm digesting a
> >>> few books as we speak.
> >>>
On Wed, Mar 4, 2009 at 12:28, Stuart wrote:
>
> As I understand it, and like you I certainly don't claim to know for sure,
> clusters within the Google infrastructure sometimes fall behind with their
> copy of the the index which can mean different results even between page
> reloads. Never seen t
2009/3/4 Daniel Brown
> On Wed, Mar 4, 2009 at 11:31, Stuart wrote:
> >
> > The results returned by Google are not constant. They vary based on your
> > location, which domain you're using, which index instance you hit and a
> > number of other things, most of which are not public. It is more th
Robert Cummings wrote:
> On Tue, 2009-03-03 at 21:18 -0600, Shawn McKenzie wrote:
>> Matthew Croud wrote:
>>> Hello,
>>>
>>> First post here, I'm in the process of learning PHP , I'm digesting a
>>> few books as we speak.
>>> I'm working on a content heavy website that provides a lot of
>>> informa
1 - 100 of 123 matches
Mail list logo