still too big, maybe
look at Zip'ing it (you should be able to compress it with PHP.. forget if you
need an additional library or not, but that's a viable option as well).
But if you really need client side scripting and can't install Apache (or even
if you can, but you're o
d copy and look at the
headers. You can start by taking all those headers and putting them into your
PHP script then slowly commenting some out until you get just what you need and
not a lot of extra garbage (to keep it simple and semi-elegant).
That's where I'd start at least.
-T
Maybe phpMailer isn't sending the correct headers either. Sometimes all it
takes is one missing header that a system is looking for and it may filter it
as spam or something.
Again, I encourage you to examine the headers from your Thunderbird "good"
email and compare it to
A, Blowfish, etc are well known algorithms and are considered at
least fairly secure too.. and are reversible.
-TG
= = = Original message = = =
Hi,
Does md5 really offer much in terms of protection?
The algorithm is really well known.
I would like to hear your thoughts and poosible alternative
the
hashes back to the clear text (for example: http://md5.benramsey.com/)
Of course it is nice because it is a common implementation, and can be
done on the server side, as well as the client side.
___
Sent by ePrompter, the premier email not
, it's
kind of heavy on the system. And it's made by the people who created the core
PHP engine, so they know a few things.
http://www.zend.com/products/zend_studio
Komodo - Similar to Zend Studio.. but much like Notepad++ and Crimson Editor..
not enough of an 'upgrade' to get
Best wishes John! We'll hold the fort and keep fighting the good fight in your
absence. :)
Good luck to ya!
-TG
= = = Original message = = =
Howdy ladies and gents:
For the past 9 or so years, with one email account or another, I have
been subscribed to the PHP General Mailing
If there isn't a function to do exactly what you want, you could use dec2bin()
to at least get the binary and work from there:
http://us3.php.net/manual/en/function.decbin.php
-TG
= = = Original message = = =
Is there a php function I can call to pass in a number and get the values
ret
FROM and all that into the same line.
:-)
$query = "SELECT blah1, blah2, blah3, ... blah147 ";
$query .= " FROM table1 ";
$query .= " LEFT OUTER JOIN table2 ";
$query .= "ON blah7 = blah42 ";
$query .= " WHERE blah16 ";
$query .= " AND blah42 ";
$query .= " ORDER BY blah9, blah8 desc, blah6 ";
is what I go for.
The SELECT line is the only one that ever gets all that long, really...
--
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
when you understand what it's doing,
is just as simple to maintain as how I do it, I do find my method more
'readable'.
I tend to build queries in WinSQL first, then insert them into my PHP code.
Some of which are fairly complicated and I find if I keep my PHP code similar
to my
Not too many ads on the pages after you find what you're searching for, and
mostly just some "ads by google" type stuff.
Speaking of Google.. you can also go here for PHP code searching.. I do all my
"cod" (sic) searching there! Fresh!
http://www.google.com/codesearc
I've tried subscribing 3 times now.
This is a test.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
can have in a URL.
That seems to be cutting off around 900 characters. That's a lot to put into a
URL.
If you're really intent on setting up a PHP powered web page to test SQL
statements, I might recommend using a web form either using input type=text or
textarea form elements and a
Exactly what I was going to mention, Brad. Here's some more info.
Quoted from PHP manual for urlencode():
"Returns a string in which all non-alphanumeric characters except -_. have been
replaced with a percent (%) sign followed by two hex digits and spaces encoded
as plus (+) si
I sort it like so.
array_multisort($array);
$count = 0;
while (isset ($array[$count]))
*display results in a table*
$count++;
Thanks,
Don
___
Sent by ePrompter, the premier email notification software.
Free download at h
r when you get a chance:
http://www.crimsoneditor.com/
At some point, these guys hope to make a new version of Crimson called Emerald:
http://www.emeraldeditor.com/
-TG
= = = Original message = = =
I am finding that notepad is lacking when correcting syntax errors in my php
code. No line numb
separate
table of positions & sort sequence values, so that all the data can
be edited in one mode (e.g., phpMyAdmin). If some of your data is in
MySQL and some of it's embedded in a query in a PHP script, it will
be a little bit more of a hassle to maintain and a little more
cry
$num = "749";
$rounded = round($num * 2, -3) / 2;
echo $rounded;
-TG
= = = Original message = = =
Is there an easy way in php to round to the nearest 500?
So if I have 600, I 500 and if I have 800 I want 1000?
Thanks!
_
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting |
| a powerful, scalable system for accessing system services |
| such as forms, properties, sessions, and caches. InterJin
rint since it
is shorter and faster :)
Cheers,
Rob.
--
..
| InterJinn Application Framework - http://www.interjinn.com |
:----:
| An application and templating framework for PHP. Boasting |
| a powerful, scalable system for accessing syste
of course, throws errors:
str_replace(""","\"",$code);
Thanks!
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
e versa. Supposedly this is an
accounting trick that ultimatley works out in the end for proper rounding of
money values. Guess our PHP 4.3.4 here doesn't do that though.
-TG
= = = Original message = = =
At 7:57 PM +0100 2/12/07, Marc Weber wrote:
>On Mon, 12 Feb 2007 18:02:41 +010
orks out for who? Bet it doesn't for the guy paying :P
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ok, screw work.. it's snowing out anyway (not that that makes a real difference
to doing PHP work inside), curiosity got the better of me.
btw.. the "banker" rounding code here was pulled from the round() manual page.
It's not what I read before, but it's th
ll do it. Now I'm even
> more curious.
>
> -TG
>
> = = = Original message = = =
>
>
>> Supposedly this is an accounting trick that
>> ultimatley works out in the end for proper rounding of money
>> values.
>
> Yeah works out for who? Bet it
vantage of that
scheme to force rounding errors to remain permanently in the person's favor.
I certainly hope that PHP continues to use the standard technique, and
not the "accounting trick" above. :-)
jon
___
Sent by ePrompter, th
would suggest using either assoc or row this way there is no
confusion. Plus it doesn't take as much resources. :)
--
Enjoy,
Jim Lucas
Different eyes see different things. Different hearts beat on different
strings. But there are times for you and me when all such things agree.
- Rush
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I don't think there's a way to do it with SQL in MySQL. Jay's talking about a
substring search within a field and what you really want is to know if two
whole rows (multiple columns) within a database are similar or not.
You could pull in all the data and use PHP to figure out
Could someone explain what this does and why it's beneficial?
Thanks,
Ed
--
if (version_compare(phpversion(), '5.0.0', 'ge')) {
class DB_DataContainer_Overload {
function __call($method,$args) {
$retval = null;
$t
] for him to login to my web app, I want my
users to be able to use their same login name and password to access
their web folder via FTP.
I am running on LAMP on a CPanel server with ProFTP as the FTP server
software, but I have no clue how to get PHP to be able to create,
edit, or delete an FTP
hello all,
As we know, there are a lot of php design patterns(more than 20). I want to
know that which patterns are important and necessary for ZCE exam.
PHP5 Study Guide only covers Singleton,Factory,Registry,MVC and ActiveRecord.
But i still feel that more patterns are necessary for the exam
hello all,
As we know, there are a lot of php design patterns(more than 20). I want to
know that which patterns are important and necessary for ZCE exam.
PHP5 Study Guide only covers Singleton,Factory,Registry,MVC and ActiveRecord.
But i still feel that more patterns are necessary for the exam
hello all,
As we know, there are a lot of php design patterns(more than 20). I want to
know that which patterns are important and necessary for ZCE exam.
PHP5 Study Guide only covers Singleton,Factory,Registry,MVC and ActiveRecord.
But i still feel that more patterns are necessary for the exam
y file. I was worried that it
was flaking and was actually sending PHP source code, but it didn't.
This seems to only happen if the server times out. Like maybe the server is
sending the PHP script to the PHP engine and not getting a response back as
fast as it would like so it's assumi
__
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
rowser security settings just to send us an email.
--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107
_______
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
w, I'll like to test it for the sighted.
>
> It's mixture of a several languages, but there is php in it, so I
> guess it's on topic.
>
> Cheers,
>
> tedd
>
> --
> ---
> http://sperling.com http://ancientstones.com http://earthsto
what you think (ease of use, if it works, security,
etc.), I would appreciate it.
The point is to be able to get to the "Congratulations" page by
hearing and entering the key. If you can get there some other way or
defeat the process, I sure would like to know about it.
I'v
he image a CAPTCHA image is loaded into the 'Click
> Me' container
>
> The main problem is how to tell the server that the div has been
> clicked, in a way that can't be simulated. I am not an expect with
> either JS or PHP, but maybe some of the bigger brains out th
script that caught quite a bit of spam once I stopped caring about it. I've
been considering putting that back together and using this method just to
see if the spam is cut back at all.
Anyone have any experiences (good or bad) with this method?
_____
hah.. I was going to let this discussion die a bit because a lot of it is
fairly off-topic. But here and there we've hit on some PHP specific topics.
I just had to say Kudos to tedd for providing a fairly interesting and possibly
very functional CAPTCHA solution. True, a simple blue dot
it's
> submitted. If you hid some "trick" fields around your page and then
> checked
> on submit whether or not they had a value, you could probably get a pretty
> decent turing test without the user suspecting anything.
>
> My old thrown together blog from a few yea
As mentioned, this isn't a PHP issue really, except a little bit on the
receiving end.
Why not use multiple 'submit' buttons instead of using HREF links?
In PHP, you'd just check the value of $_POST['action']
You can also do it with image submit buttons, j
I think you're probably doing what almost all of us have done. Get an idea,
see PHP as a potential solution and decided to just dive right in. I don't
think many people start out in a classroom style "Hello World" situation and
build slowly onto that.
I'm sure
tems.
-TG
= = = Original message = = =
- Original Message -
From: "M~rio Gamito" <[EMAIL PROTECTED]>
To:
Sent: Monday, April 09, 2007 3:31 PM
Subject: [PHP] "Sense" last record
> Hi,
>
> I'm doing this site that has three news in the homepag
>
> array_remove(array(1=>2,2=>3),2,true); // array (2=>3)
> array_remove(array(1=>2,2=>3),2,false); // array (1=>2)
>
> Anyone knows if there already exists such function?
>
> Else should i create future request?
>
> Tijnema
>
> --
> PHP Genera
In addition to the suggestions made, check out opendir() too. It may be a
little simpler for what you're doing. Not sure.
Remember, the beauty of PHP is that there's almost always a fuction or two
already made that do what you want. Even some semi-obscure stuff. So always
scan t
the static # of pages
Also, if you don't need IE Tab and TabMix, remove them. I kept TabMix but can
live without IE Tab.
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP
Turn on MAGIC QUOTES and REGISTER GLOBALS
Once you've done that, install Postgres. Run your MySQL command again,
Postgres has much better error reporting and will assist in debugging the
situation.
You might consider replacing your javascript functions with PHP ones since JS
can some
27;;
> ~~~
> ~~
> ~ else
> ~~echo 'No results found!';
> ~
>
> ?>
>
> Does this satisfy you?
>
>
>
--
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/browse/from/ly
with actual data increases memory that much?
Damn.. maybe I'm just ignorant of how PHP maintains things in memory, but that
seems kind of nuts too
3. Do you have to store each newsletter in memory at each loop or can you send
them out then move to the next one without storing them in a
download... but that would be slow and not terribly efficient.
Another option is to use a non-PHP solution. List all the links to the files
they want to download and use a download manager like Download Accelerator Plus
(DAP), GetRight, umm.. some "*zilla" program I believe did it, or somet
mail message
'bundler' so you didn't have to download emails one at a time via archaic POP3
too..hah
Back to the OT and OP... doing this with PHP would take a little cleverness and
probably isn't worth it. But might be a fun challenge and is certainly
possible with enough elb
jinn.com |
:--------:
| An application and templating framework for PHP. Boasting |
| a powerful, scalable system for accessing system services |
| such as forms, properties, sessions, and caches. InterJinn |
| also p
Excel
(assuming they have it installed). This works for a real quick and dirty
export-to-excel type thing. Then PHP isn't really creating an Excel file, but
presenting the data in a format that Excel on the client PC can read.
Or you can use COM as Jay recommended, but that requires Excel to be
Hi,
I'm using the following code:
$fp = fopen($filename, 'r+');
$content = fread($fp,
filesize($filename));
fclose($fp);
header("Content-type:
application/msword");
header("Content-Disposition: attachment;
filename=$filename");
echo $content;
exit;
___
Hi all,
I want to be able to have an array of elements of different types. As an
example: the first element is a boolean, the second is an integer, and the
thirs is a string.
In php there is no typing, i'm just wondering if there is a way to have that,
it would be a lot better than havi
http://ca.promos.yahoo.com/jacko/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi Tommy,
The code in the link is traightforward. The problem is you need to install
ADOdb.
I'm wondering if there is a way to do it from scratch.
Thanks
- Original Message
From: Tommy Pham
To: Php Developer ; php-general@lists.php.net
Sent: Tue, April 20, 2010 11:37:21 AM
Su
Hi, somebody knows if it is possible to open excel content in a new window?
what i want is basically initialize the headers and instead of echo $content i
want it to open in a new window. is that possible?
- Original Message
From: Tommy Pham
To: Php Developer ; php-general
;.$eol;
$headers .= 'Return-Path: cont...@example.com'.$eol; // these two to set
reply address
$headers .= "Message-ID: <".time()."
TheSystem@".$_SERVER['SERVER_NAME'].">".$eol;
$headers .= "X-Mailer: PHP v".phpversion().$eol;
Hello world!
I'm trying to learn PHP ( first programming language that I learn) and
I feel kinda lost. I've read PHP programming 3rd edition( O'reilly),
'getting good with PHP' by Andrew Burgees and some tutorials on the
internet but can't code something more comp
On 8/20/2013 10:00 AM, Tedd Sperling wrote:
> Hi guys:
>
> A teacher at my college made the statement that JAVA for Web Development is
> more popular than PHP.
>
> Where can I go to prove this right or wrong -- and/or -- what references do
> any of you have to support your a
treated as base and
"e839da08e2a7afe6dd12ec58245d" is treated as an exponent. My hint that
"e839da08e2a7afe6dd12ec58245d" is not a valid exponent was not answered.
What do you think about?
cheers
Daniel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
) before the truncation at
> the "d", then it returns INF. Makes perfect sense.
This is what drives me crazy.
If I use a string in PHP I don't want PHP to cut this string. Either it uses
this string as it is or it gives me an error/warning/false (what ever...). But
silently(
The cast to float is truncating the invalid characters and since your
string contains a float that is INF (8315e839) before the truncation at
the "d", then it returns INF. Makes perfect sense.
If I use a string in PHP I don't want PHP to cut this string. Either it uses
this strin
Hi,
I have a MySQL server A, a server B with PHP 5.3.8 and a server C with PHP
5.3.3. I'm connecting to the MySQL server on A via TCP from B and C using an
internal network. Server B and C use the same PHP application. There are also
same PHP scripts that get data from the database and
> > I have a MySQL server A, a server B with PHP 5.3.8 and a server C with
> > PHP 5.3.3. I'm connecting to the MySQL server on A via TCP from B and C
> > using an internal network. Server B and C use the same PHP application.
> > There are also same PHP scripts that g
This thread, as relates to PHP, is pointless. If people have issues with what
someone else said, please take it up with them privately and/or notify the list
admins if you think it was inappropriate enough to warrant administrative
action.
The joke was cute but all in all, not that funny. It
need 'unzip' on the server to un-zip it.
"man unzip" should find it for you.
--
Like Music?
http://l-i-e.com/artists.htm
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.eProm
I might be able to provide a little insight, but all my code that I've done COM
work with is at home so I can't send you any samples right this second.
I've used PHP and COM to interface with Excel, Outlook and MapPoint. I'm not
terribly familiar with using Objects with
I agree with Mikey on the "live and let live" side of things. This forum is
about sharing technical knowlege and helping other users overcome technical
challenges relating to PHP.
Yeah, a site that's "adult oriented" is most likely a pay site. Doesn't mean
they
echo "\n";
single quotes:
echo '';
cheers
Bruno Santos
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
implemented
in php. That is a database engine written in PHP.
I know this is not the most effecient way, but I'm not planning to use it
for heavy weight database-driven-application.
I just want a way to store simple data and I thought that SQL would be a
nice interface. Since it could be eas
EMAIL PROTECTED]
Sent: 08 March 2005 19:58
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: Kevin; PHP General Mail List
Subject: RE: [PHP] suspicious - maybe spam
Richard Lynch <mailto:[EMAIL PROTECTED]>
on Tuesday, March 08, 2005 9:54 AM said:
> Don't feel too bad.
>
> Every
my GET and POST requests in a
htmlentities() function should keep me saferight? or what else should
i/can i do?
eg:
$page= htmlentities($_GET[page]);
Thanks,
Ryan
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.8.3 - Release Da
ope that helps.
Chris
--
Chris Shiflett
Brain Bulb, The PHP Consultancy
http://brainbulb.com/
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
No virus found in this outgoing
pter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I will!
Ok, not completely.
I'm an avid windows user, but not a blind Gates disciple.. please don't accuse
me of that.
I will never say that a Windows server is the 'best' platform for doing PHP
script serving because I don't believe that's the case. It DOE
hrough the url. The PHP manual doesnt
say much for this function, but it does have quite a bit on the urldecode()
function which says using urldecode on a $_GET variable wont produce the
desired results. Is there another way to decode a url variable? Or maybe a
better way to get a variable fr
Made one myself that I thought was pretty good at the time (one of my first PHP
projects) but as I learned more about PHP, I see that I did things the hard
way, so it's in bad need of updating.
If you wanted the source to play with as a starting point, I could probably
through that tog
other line. I use this
line when looping and determining if the background should be colored
or not:
Obviously, the first part is the important part. Good luck!
~Philip
___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
pear.org/
in your browser and save the output to a local file go-pear.php. You can then
run
php go-pear.php
##
(http://pear.php.net/manual/en/installation.getting.php)
(Go to that address, copy the text you get into a file called "go-pear.php"
then run "php go-pea
For us, the unix instructions worked 100% on Windows as well. Guess since it's
all PHP based it didn't make a difference. Probably some minor internal tweaks
and checks due to filesystem differences, but the PEAR guys did a great job in
making it all very easy.
Now for us lazy Wi
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
sobjects
good luck!
-TG
= = = Original message = = =
Is there a way to programatically get information about a
specific table and/or field? And also any constraints that
a field has?
thnx,
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: htt
riginal message = = =
Sam Smith wrote:
> I have an existing PDF file that I want to add text to or make changes to
> text with data from an HTML form via PHP.
>
> The PDF looks like this:
> 20 0 obj<>stream
> 8;X-DgMYb:(An746bc%oU,Mo*S -$2%Ipq]A
> aoW>]"SN?epNo...
>
Don't forget your native database escaping function. PHP has this one for
MySQL, for example:
mysql_real_escape_string()
That should properly escape everything that could be used against MySQL to
perform an injection.
There should be some equivalent commend in the various database conne
not work the way I want, because if I want to
> replace the word "in" all passages containing the characters "in" are
> replaced. For example Singapore.
>
> Does anybody know how to do this on just words?
>
> Thank you for any hint,
>
> Merlin
&
uot;, " $word ", $text);
That should prevent the problem your having and ensure only individual words
are bolded.
http://www.thelonecoder.com
[EMAIL PROTECTED]
562.924.4454 (office)
562.924.4075 (fax)
continuing the struggle against bad code
*/
?>
> From: Merlin <[EMAIL PR
g you can
use the date values directly to delimit the range that you want
SELECT * FROM blah WHERE mm BETWEEN '11/04/2005' AND '11/05/2005'
--
Regards,
Manuel Lemos
PHP Classes - Free ready to use OOP components written in PHP
http://www.phpclasses.org/
PHP Reviews - Revie
There's probably some clever answer to this like "Just do myFunc($myList) and
it'll automatically parse out the arguments".. because PHP does clever things
like that sometimes.
But if anything, you can do something like this:
$myList = array(1, "arg", 5);
myF
t's a native Windows API wrapper for PHP.. so you have access to all the
familiar Windows.
http://www.hypervisual.com/winbinder/index.php
= = = Original message = = =
[pardon me for my poor english]
What you want to do?
If you just want to be a desktop applications programmer, i dont thi
Since PHP is server-side, it's probably not the best option for doing what
you're describing. It IS possible to use a javascript "onchange" event and use
that to trigger a new page load which would change your second select box, but
that's kind of slow and sloppy an
freelance programmers and clients
come together and bid on projects with different levels of experiences and
prices, but I don't remember where that is now. Can anyone direct me to a
website such as that? Any help would be appreciated. Thank you.
Navid
--
PHP General Mailing List (http://w
Going crazy! I'm using the imagerotate function against a PNG with
transparency, to overlay another image via imagecopy.
The problem is the transparent area is showing as black.
If I don't use imagerotate and just stick with the imagecopy, the area is
transparent.
Why am I losing my transpar
2:59 PM
To: Manuel Lemos
Cc: [EMAIL PROTECTED]
Subject: [PHP] Re: Graphical calendar
Works like a champ!
Question: has anyone extended the class so that when one clicks on a
day, the year, month, day is returned?
Todd
Manuel Lemos wrote:
> Hello,
>
> On 05/07/2004 11:36 PM, Todd Cary
d to login. I
thought perhaps it might be cookies, so I tried setting the cookies to the
values previously set on the first attempt, but no luck.
Any ideas?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
501 - 600 of 2071 matches
Mail list logo