> Be real - the legislation is a waste of time and money and will never
be
> enforced or enforcable. Too many 'anonymous' countries willing to
take
> money for server hosting in the world.
Yes, but they're taking money *from* American companies, for the most
part. You don't have to punish the re
> and how will this be enforced. waste of legislation imo.
The same way any law is: by filing criminal charges after the fact.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> Yea its not bad if you dont have a life outside of programming and/or
> computers
>
> if you have kids or other responsibilities then all of a
> sudden 500$ becomes
> a very large issue as thats a months groceries or what not...
>
> heh yea the average salary is 50K but then when the
> govern
> Because I need to write $include_path content to file; not
> display it in the
> browser...
Then you're not INCLUDEing it inline to the source, are you?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> you can create so-called assistants...
>
> You can create a loop that asks in a table how many rows and
> columns do you
> want in that table.
>
> Then you can have it create the table with all your favorite
> default table
> settings, but while it is generating it, you could have it
> promp
> I guess you could call them helper scripts libraries.
>
> Example would be: You can program a script to create a switch
> statement and
> then have it prompt you for the number of case statements to
> add in and if
> you want them to break; or not.
>
> Things like that. Short cuts if you wil
> Exactly what is the purpose of this? Let me clarify. I know that it's
> supposed to prevent computers from submitting forms automatically
> because they cannot read the graphic, but what I don't
> understand is in
> what cases this is useful?
Not being able to auto-subscribe to mailing lists in
> > RCVD_IN_OSIRUSOFT_COM (0.6 points) RBL: Received via a
> relay in relays.osirusoft.com
> >[RBL check: found
> 4.131.92.216.relays.osirusoft.com.]
> > X_OSIRU_OPEN_RELAY (2.9 points) RBL: DNSBL: sender is
> Confirmed Open Relay
>
> You might want to check your email ser
> How can you possibly test, in a conditional, the return value of the
> return statement itself when it has no value to return and even causes
> the current scope to exit IMMEDIATELY??
Per the logic, if it returns immediately, isn't the value irrelevant? That
is, assuming that the truth of the f
> I would say the real issue at hand here is that the return
> statement is
> not a fucntion, but rather a language construct, thus it
> cannot be used
> as a function unless explicitly stated as so. The reason a parse error
> is occurring is because this particular construct has no support for
>
> Generally it doesn't look like a function since you can do:
>
> return 'foo'
>
> which has no parenthesis.
True enough.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> This is simply impossible. This list is propagated to places other
> than the mailing list (ie. news.php.net)
So? What negative impact would a Reply-To: header have on a newsgroup? It
doesn't affect followups...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http:/
> Have you tried other popular mail clients like those from Eudora or even
> Netscape/Mozilla?
Neither Eudora nor Mozilla support RFC2369 headers.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> I'm using the browser but not the email and news client so
> I'm not sure but I just came across this: (Pls. check under
> subheading "Mailing lists".)
>
>
http://www.opera.com/support/tutorials/opera/m2/folders/?test=pop
> And, umm... PHP in Opera looks great. ;)
Yes, but:
- the IMAP implem
> One problem is that people, like you did now, forget to
> delete the non list
> address. That makes me get two mail with the exact same
> content - one from
> the list and another directly to me. That is very irritating.
To you, irritating.
To me, preferable -- one copy, the list one, goes in
> you don't need special privs to use another mail program.
Actually, given the fact that the other products you're talking about are
POP or IMAP clients, and most Exchange-based companies allow only MAPI
clients (specifically Outlook and the Outlook Web Access client), that could
easily be consid
> Um, not sure what this meant with the fileperms() function.
> I have file
> permission as "-rw-r--r--" or "644" and when using hte
> fileperms() funciton,
> it spitted a result as "33188". If you know what it is then
> I'm all ear!
33188 (base 10) == 0x100644 (base 8).
--
PHP General Mail
Sorry, but what command line are you talking about?
He didn't say he'd like to execute his PHP scripts from a shell prompt.
He said that he'd like the output of his PHP scripts to be filtered before
httpd outputs them.
> on the commandline you need to have the php executable on your
> path...the
On Wed, 20 Apr 2005, Tom Rogers wrote:
> You can set this with arg_separator.output in php.ini
That doesn't really answer why the choice was made to default to what
not only shouldn't be the default, but should probably be illegal
altogether.
--
PHP General Mailing List (http://www.php.net/)
Richard Lynch wrote:
Why in the world should we be forced to follow your narrow-minded
so-called "standard"? :-)
Hint: smileys indicate that you're joking. If you're joking, I don't
get what's humorous -- please explain. If you're making a serious point
but trying to have the rhetorical equ
PHP Developer wrote:
some people don't remove the "Re:" prefix when answering to the questions It opens a new topic on the list and that's not appropriate .
Thank ya
Any email client that uses the presence or absence of a "Re:" header to
decide if posts are related is severely broken.
-
Danial Rahmanzadeh wrote:
hey,
I use Gmail but i have the same problem.
Whoever said Gmail was a good mail client?!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> Oh I understand now. There is a different between
> fileatime(), filectime()
> and filemtime(), with a letter 'a', 'c' or 'm'... The one
> with the m is
> what work with Unix/Linux..
Um, they all "work with Unix/Linux" -- they just mean different things.
Atime is the time a file was last ac
> I'm trying to password protect an online PDF file. I know
> how to use PHP to
> pw protect a webpage, but what would be the best way to
> protect access to a
> nonwebpage file?
Stick it in its own directory and use htaccess... Or password-protect it
when you generate it.
--
PHP General Mail
John W. Holmes wrote:
From: "Roger B.A. Klorese" <[EMAIL PROTECTED]>
How do you do the equivalent of mysql_list_tables() in PHP when running
against a SQL Server database?
Ah... I assume there's no "SHOW TABLES" query in MSSQL? Isn't there a system
John W. Holmes wrote:
From: "German" <[EMAIL PROTECTED]>
Hello, it wanted to know how as profit to
supplant the function mysql_list_tables() for
SQL server server or like the tables of one
db of SQL server in php...
It has no idea what you just said.
How do you do the equivalent
Galkov Vladimir wrote:
Two tables have diferent standarts to hold IP adresses:
first:
045.012.001.002
003.000.123.231
123.230.101.080
second:
45.12.1.2
3.0.123.231
123.230.101.80
Are you aware that these don't mean the same thing? Leading zeroes mean
an IP address quad is in octal.
If you
Garcha,
Kindly check your file paths. When you export it, it may not point
to what really is the real path online.
May I ask what are you trying to achieve?
-Original Message-
From: Pushpinder Singh Garcha [mailto:[EMAIL PROTECTED]
Sent: Monday, March 10, 2003 1:45 PM
To: [EMAIL PROTEC
I think this is facing a bigger issue when it comes to
Concurrency. When two or more apps in a given time pops
the auto_increment or mysql_insert_id (they will get
THE SAME ID assuming no other transaction issued an
INSERT sql to the table while retrieving the ID).
Now, I don't know if this has
you can 'serialize' it and pass it as POST or GET
variable too, then deserialize it again.
Check out these PHP functions :
serialize() and deserialize()
Hope this helps,
Miches:)
-Original Message-
From: Diana Castillo [mailto:[EMAIL PROTECTED]
Sent: Monday, March 10, 2003 9:39 AM
To:
I try to fread() the html file. Although the file is
displayed fine when I point my Browser (Mozilla)
to it. I am testing on the MAC OS Jaguar Platform
Thanks again
--pS
On Tuesday, March 11, 2003, at 09:12 AM, Michael Roger C. Bianan wrote:
> Garcha,
>
> Kindly check your file paths
Hi,
You can read the file via fopen() and fread(),
and then pass the resulting data to the client browser...
Thanks,
Miches;)
-Original Message-
From: Boaz Yahav [mailto:[EMAIL PROTECTED]
Sent: Monday, March 10, 2003 2:44 PM
To: Doug Coning; [EMAIL PROTECTED]
Subject: RE: [PHP] Automa
Hi Pag,
In my experience, I usually have two database systems.
I have the Live DB which is currently the one used
by the website which is the one on the hosting server,
and I also have a local DB on our local server just here.
What I do is I create the back-end applications for the
administra
check out http://www.esellerate.net/
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 11, 2003 11:22 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Looking for partner for credit cards
Hi,
I'm sure lot's of you have done their shop with PHP in the US. Co
Mike,
Use mysql_num_rows($db_query) ;
- returns no of rows in the result set.
- if none, returns 0.
Thanks,
Miches
-Original Message-
From: Mike Tuller [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 11:17 AM
To: php mailing list list
Subject: [PHP] Check to see if mysql_fet
$row[developer]
$row[title]
$row[version]
$row[platform]
\n";
}
}
On Thursday,
if the browser doesn't support Javascript use this :
if (YES) {
header("Location: thispage.php");
}
else {
header("Location: thatpage.php");
}
exit();
Just make sure you haven't send any output to the browser yet.
A suggestion: place this code before you ever print in your
cod
Hi Kelly,
It would be better if you just take off the second part,
the one enclosed in "<>".
Also, header("Location: location");
notice, Location starts with capital L .
Hope this helps,
miches:)
-Original Message-
From: Kelly Protsko [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13
401 - 438 of 438 matches
Mail list logo