Re: [PHP] question about corrupt db?

2008-12-02 Thread uaca man
To view the logs in IIS you must go to the root web site in the IIS Snap in, virtual folders, folders and applications don't have a separate log file. In the left panel in the snap in, right click in the site, probably default web site, click on properties, look for a tab called 'Web Site', in the

Re: [PHP] PHP friendly web software?

2008-11-25 Thread uaca man
2008/11/25 <[EMAIL PROTECTED]>: > >> Life's too short to not have code completion! :D > > I tried to help a guy out yesterday, and his silly code completion thingie > ended up writing bogus HTML as I typed... > > I don't NEED code completion, thank you very much, I know what I'm doing, so > get

Re: [PHP] PHP friendly web software?

2008-11-25 Thread uaca man
I use vs.php to edit php and dreamweaver to html and im happy with those two. 2008/11/25 John Boy <[EMAIL PROTECTED]>: > Can anyone recommend a wysiwyg web development software which is php > friendly, i.e. you can design the page in wysiwyg and insert php code into > the html without destroying

[PHP] SoapClient Result

2008-11-18 Thread uaca man
Hello, i´m trying to consume a .net webservice from php as fallow: $client = new SoapClient('http://localhost:1105/Web Service .Net/Service.asmx?WSDL'); print_r($client->HelloWorld()); and the result is: stdClass Object ( [HelloWorldResult] => Hello World ) The call works as expected, the

Re: [PHP] object persistence within a session

2008-11-07 Thread uaca man
>Did storing the object reference not also store the class definition? No. You need to include the class definition. Take a look at: http://br.php.net/manual/en/function.unserialize.php, maybe you can use the *unserialize_callback_func *to load the class definition. Ângelo 2008/11/7 Stan <[EM

Re: [PHP] redeclare classes dynamically

2008-10-22 Thread uaca man
>From your code it looks like $controller will have only the last instance to the controller class, so you can only load the last request and instantiate only one time. Other alternative is to use namespaces but this is only for PHP 5.3 or you can do what everyone else does from the begging of tim

Re: [PHP] Output text status on a long class

2008-10-14 Thread uaca man
Dan, Try echo "some text"; ob_flush() ; *flush()* ; also take a look at the documentation at: http://br2.php.net/manual/en/function.flush.php Angelo 2008/10/14 Chrome <[EMAIL PROTECTED]> > Hi all > > I have a class that takes a while to run a

Re: [PHP] PHP to get File Type

2008-10-14 Thread uaca man
There is a more elegant way: http://br2.php.net/manual/en/function.mime-content-type.php and the preferred way: http://br2.php.net/manual/en/function.finfo-file.php Angelo 2008/10/14 Aschwin Wesselius <[EMAIL PROTECTED]> > Manoj Singh wrote: > >> Hello All, >> Is there any function in PHP t

Re: [PHP] Re: php framework vs just php?

2008-10-07 Thread uaca man
t is your framework??? uacaman. > > i'm using symfony, but i'm reading the book. it's hard but there are so many > things you can do easily with symfony! > > 2008/10/7 uaca man <[EMAIL PROTECTED]> > >> To be or not to be dump it your choice. >> >>

Re: [PHP] The 'at' sign (@) variable prefix

2008-10-06 Thread uaca man
Documentation is at: http://br.php.net/manual/en/language.operators.errorcontrol.php Angelo 2008/10/6 Crash Dummy <[EMAIL PROTECTED]>: > I learned through osmosis that I could use the '@' sign to prevent an > error with an uncertain variable. For example, if there is no $_GET[] > value in this l

Re: [PHP] Re: php framework vs just php?

2008-10-06 Thread uaca man
To be or not to be dump it your choice. My framework it not just awesome it is super awesome. Angelo 2008/10/6 Dan Joseph <[EMAIL PROTECTED]>: > On Mon, Oct 6, 2008 at 1:01 PM, Jason Pruim <[EMAIL PROTECTED]> wrote: > >> >> But... Which framework is better? :P >> >> >> >> > Oh my.. now we're gon

Re: [PHP] Re: php framework vs just php?

2008-10-06 Thread uaca man
Lets raise the dead once more. I have been using the Prado framework, prado uses the .net architecture, so it is easy and fast to learn for those who came from a Microsoft platform, anyway prado is very good to build UI, but there is always a *but*!! Prado database abstraction model it is just bad

Re: [PHP] db_* => pg_*/my_*/ifx_* ?

2008-09-30 Thread uaca man
nathan, if you are not going to help, DON´T answer. Michelle, there are many options, a few are available at pear.php.net, take a look at the pear MDB2 package it is probably what you want. Angelo 2008/9/27 Michelle Konzack <[EMAIL PROTECTED]>: > Hello, > > I am using some crapy software, wh

Re: [PHP] Re: $this->value VS $value

2008-09-23 Thread uaca man
Just for closure: so many year believing that $value and $this->value was the same!!! Tks everyone for the quick answer :) Ângelo 2008/9/23 Colin Guthrie <[EMAIL PROTECTED]>: > Nathan Rixham wrote: >> >> yeah that's right; add in one more line and the reason why is apparent.. > > Well I think "i

Re: [PHP] Re: $this->value VS $value

2008-09-23 Thread uaca man
Yes, it is not the same. Should it be the same? 2008/9/23 Nathan Rixham <[EMAIL PROTECTED]>: > uaca man wrote: >> >> Hello to all my fellow members of the PHP community. >> >> As a personal rule i always use $this in front of class members, but i >> alway

[PHP] $this->value VS $value

2008-09-23 Thread uaca man
Hello to all my fellow members of the PHP community. As a personal rule i always use $this in front of class members, but i always knew from others programing languages and i guess I just thought it was same in PHP that without $this keyword it should work just the same, however in the code bellow

[PHP] Just testing IGNORE!!!

2008-09-23 Thread uaca man