I've seen you already had a good answer on the errors in the code so I won't
go on that. As for OOP, the one design error you have is that you are
asking for an action, not an object. You want to make SQL inserts, that is
your purpose, and that is an action, which is solved by a statement, no
Me... again, still boring you to death with meaningless OOP rantings.
First I would like to point out that there was a design mistake in what I
proposed in the last mail (following afterwards): the Saluter shouldn't be
an abstract class, it isn't correct to base your class hierarchy on the
abilit
On 04 Oct 2006, at 19:28 , Glenn Richmond wrote:
http://www.roundcube.net/
I can't say enough good things about the roundcube project. Ajax-
based,
like a desktop email client in a browser. Still got some minor
bugs, but
works pretty well. Note that it's still a Beta at this point.
Despite
On Thu, 05 Oct 2006 02:47:59 +0100, Deckard <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm trying to lay my hands on PHP OOP, but it's not easy :(
> I've read several examples in the web, but cannot transpose to may case.
>
> I'm trying to set a class to make SQL inserts in mysql.
>
> I have the clas
Yes, permissions are fine :(
Ben Ramsey wrote:
> On 10/4/06 9:14 PM, Deckard wrote:
>> It's a typo.
>> The file is really config.inc.php everywhere
>
> Check the file permissions. Does the Webserver have permission to read
> from the /var/www/html (it probably does, but it wouldn't hurt to
> chec
Hi,
I'm trying to lay my hands on PHP OOP, but it's not easy :(
I've read several examples in the web, but cannot transpose to may case.
I'm trying to set a class to make SQL inserts in mysql.
I have the class:
-
table = $table;
$this->sq
On 10/4/06 9:14 PM, Deckard wrote:
It's a typo.
The file is really config.inc.php everywhere
Check the file permissions. Does the Webserver have permission to read
from the /var/www/html (it probably does, but it wouldn't hurt to
check)? Does the Web server have permission to read
/var/www/h
On Wed, 4 Oct 2006 23:19:58 +0200, "Martin Bach Nielsen" <[EMAIL PROTECTED]>
wrote:
> Hi all.
>
>
>
> I have written a guestbook (I know, there's a ton out there), which until
> recently did not get any spam, so now I'm trying to remove the spam-ad by
> using preg_replace:
>
>
>
> $meldin
http://www.roundcube.net/
I can't say enough good things about the roundcube project. Ajax-based,
like a desktop email client in a browser. Still got some minor bugs, but
works pretty well. Note that it's still a Beta at this point.
Cheers,
Glenn.
Christopher Weldon wrote:
> Peter Lauri wrote:
On Thu, 5 Oct 2006 01:17:41 +0700, Groundhog <[EMAIL PROTECTED]> wrote:
> how can I jump to another page after IF..ELSE statement, for example:
>
> IF (statement == TRUE)
>{ stay on this page, index.php }
> ELSE { jump to index2.php}
>
> --
> Come and Visit My Blog
> http://ubuntu-ku.blogsp
Hi,
It's a typo.
The file is really config.inc.php everywhere
Regards,
Deckard
Ben Ramsey wrote:
> On 10/4/06 8:32 PM, Deckard wrote:
>> Hi,
>>
>> I have this line of code:
>> include_once('../config.inc.php');
>>
>> I'm 100% sure that the file config.inc.php is a directory up.
>>
>> config.inc.
On 10/4/06 8:32 PM, Deckard wrote:
Hi,
I have this line of code:
include_once('../config.inc.php');
I'm 100% sure that the file config.inc.php is a directory up.
config.inc.php is in /var/www/html
and the file that calls it is in
/var/www/html/classes
nevertheless, i'm getting the error:
"War
Hi,
I have this line of code:
include_once('../config.inc.php');
I'm 100% sure that the file config.inc.php is a directory up.
config.inc.php is in /var/www/html
and the file that calls it is in
/var/www/html/classes
nevertheless, i'm getting the error:
"Warning: main(../config.inc): failed to
On 10/4/06, Manuel Lemos <[EMAIL PROTECTED]> wrote:
Hello,
Sorry, I sent the message too soon. The HTTP client class is here:
http://www.phpclasses.org/httpclient
I'm wondering how soap has to do with this.
Curt
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http:
Peter Lauri wrote:
> Hi,
>
>
>
> Do you have any suggestion on WebMail clients written in PHP that is good
> and easy to install?
>
http://hastymail.sourceforge.net/
--
Christopher Weldon
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi all.
I have written a guestbook (I know, there's a ton out there), which until
recently did not get any spam, so now I'm trying to remove the spam-ad by
using preg_replace:
$melding = preg_replace('/(
Sorry, copied wrong code to you. Actually code has https in it:
https://www.myurl.com/imsafm2_main.php";
name="upload_form" enctype="multipart/form-data"
On 10/4/06 4:55 PM, "Andrew Brampton" <[EMAIL PROTECTED]> wrote:
> http://www.myurl.com/imsafm2_main.php";
> name="upload_form" enctype="mul
Well, the File Manager application itself is pretty extensive... But if
you're looking for the upload code, here it is (sensitive information
erased):
if($upload_file) {
$db = mysql_connect("localhost","usr","pwd");
Please, show us your code.
""Rahul S. Johari"" <[EMAIL PROTECTED]> escreveu na mensagem
news:[EMAIL PROTECTED]
Ave,
I have a File Manager application in place for over 2 years now.
Everything¹s been working groovy!
Until yesterday. Yesterday we purchased and installed an SSL Certificate.
And no
In other hand, if you sent any character yet, you can use.
IF (statement == TRUE)
stay on this page, index.php
ELSE
echo "window
location=\"index2.php\";";
""AraDaen"" <[EMAIL PROTECTED]> escreveu na mensagem
news:[EMAIL PROTECTED]
> If you have not sent any character till that moment,
Ave,
I have a File Manager application in place for over 2 years now.
Everything¹s been working groovy!
Until yesterday. Yesterday we purchased and installed an SSL Certificate.
And now the uploads are not working anymore! Gets the ³Page cannot be
displayed² error. Tried the same application witho
If you have not sent any character till that moment, you can use:
IF (statement == TRUE)
{ stay on this page, index.php }
ELSE {
header("Location: index2.php");
cya
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
how can I jump to another page after IF..ELSE statement, for example:
IF (statement == TRUE)
{ stay on this page, index.php }
ELSE { jump to index2.php}
--
Come and Visit My Blog
http://ubuntu-ku.blogspot.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.
I understand the performance boost one can get by reusing existing
connections. And I did see for myself that with the default settings,
oci_pconnect() does reuse all the connections.
But what should happen if there are idle connections and the timeout is
reached ? That is my question. What is the
Register Globals will take all the keys/values in
$_SERVER/$_POST/$_GET/$_COOKIES and turn each one into a variable in
your script.
It is equivalent to:
extract($_POST);
extract($_GET);
extract($_COOKIE);
.
.
.
The "GPC" settings in php.ini determine the order of the above
statements, in case *bo
Hi people,
Im working in a class that export a database from sqlite to postgresql. I
will finish my work soon and my doubt is: This class is useful for the php
programers comunnity or is useless because everybody that need to use this,
already develop a class like that ? I needed to do this conve
Bipul Dobhal wrote:
Hi,
How can i create my own formats for fckeditors combo box..
I found the line
FCKConfig.FontFormats='p;dic'pre;address;h1;h2;h3;h4;h5;h6';
in fckconfig.js file.
I think by setting my own format in this line may handle this problem
because when I added any wor
Bradley,
There are words to describe people like you, but this list tends to be
quite clean so I'll refrain.
Bradley, meet /dev/null, I hope you'll be very happy together!
-Stut
(I'm thinking this fscker has set up an automated response system -
someone at PHP must be able to unsubscribe hi
Sheena Mullally wrote:
> test
Sorry, you failed.
Cheers
--
David Robley
This tag is devoid of any humor.
Today is Boomtime, the 58th day of Bureaucracy in the YOLD 3172.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Colin Guthrie escribió:
José Manuel Peso Echarri wrote:
Hi people,
I am looking for a library that mix xsl and xml producing output in
xhtml at server side.
I have readed about sablotron and libxsl, but i am confused.
Which is the best alternative in perfomance terms for the versions 4.2,
Hi,
How can i create my own formats for fckeditors combo box..
I found the line
FCKConfig.FontFormats='p;dic'pre;address;h1;h2;h3;h4;h5;h6';
in fckconfig.js file.
I think by setting my own format in this line may handle this problem
because when I added any word or letter in this
Hello,
on 10/03/2006 07:03 PM Mendonce, Kiran (STSD) said the following:
> This is a follow up to the bug (#39029) that I reported earlier which
> has been repeatedly closed as bogus.
>
> The oci8.persistent_timeout setting in the php.ini file is documented as
> :
> "The maximum length of time (i
I don't see how its that much of a secuity risk, they create a ssh
tunnel. All it does is add an extra layer of authentication. Its not
like the password requirements are bypassed.
On 10/3/06, Richard Lynch <[EMAIL PROTECTED]> wrote:
On Tue, October 3, 2006 2:33 am, Wesley Acheson wrote:
> Th
On Sun, 01 Oct 2006 19:59:08 +0100, Deckard wrote:
> Hello,
>
> I have this code:
>
> // insert new user in mysql user table
> $sqlInsertUser = "INSERT INTO user (Host, User , Password ,
> Select_priv, Insert_priv, Update_priv, Delete_priv) VALUES ('$hostname',
> '$mysql_username', '$mysql_pa
Stupid?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
Sorry, I sent the message too soon. The HTTP client class is here:
http://www.phpclasses.org/httpclient
on 10/03/2006 04:38 PM Joshua Capy said the following:
> I am relatively new to php and could use a good pointing in the right
> direction.
>
> I have a soap client in NuSoap that I d
Hello,
on 10/03/2006 04:38 PM Joshua Capy said the following:
> I am relatively new to php and could use a good pointing in the right
> direction.
>
> I have a soap client in NuSoap that I developed for a webservice that I
> wrote in another language and I need it to be able to send a file in a
>
On 03/10/06, David Robley <[EMAIL PROTECTED]> wrote:
Michelle Konzack wrote:
> Am 2006-09-27 17:39:25, schrieb David Robley:
>
>> 88 tons!! Point us to an image of that please.
>
> Currently not availlable but it is an ex Pershing II Transporter
> from the US-Army manufactured by the german Ente
38 matches
Mail list logo