Documented research indicates that on Sun, 29 Aug 2004 21:00:06 +, Paul
Waring wrote about "Re: [PHP] newbie questions":
>> The constructor for Content accepts an
>> object ... why is &$db used instead of $db?
>
>&$variable means to pass the variable by
> The constructor for Content accepts an
> object ... why is &$db used instead of $db?
&$variable means to pass the variable by reference (as opposed to
passing by value, which is the default). Instead of making a copy of
the variable, you are telling $this->db to point to the same point in
memor
Jason Wong wrote:
Anything else anyone could tell me would be great!
Depends on what you want to know. Almost every problem that you will come
across will be covered in:
- the php manual
- the list archives
- google
Don't forget about Mr. Holmes. I betcha he's got php scribbled all over
t
On Thursday 12 February 2004 01:03, James Marcinek wrote:
> I have a couple of questions I'd like to ask:
>
> 1.) Are there built in libraries to connect to DB2?
> Nothings clear from the documentation I've read. I see
> that there's libraries for Oracle, Informix, MySQL.
Apparently so, ask googl
Also checkout
webmonkey.com and devarticles.com
=P e p i e D e s i g n s
www.pepiedesigns.com
Providing Solutions That Increase Productivity
Web Developement. Database. Hosting. Multimedia.
On Tue, 21 Jan 2003, Neil Freeman wrote:
> Have a look on devshed.com
>
> Bryan Cassidy wrote:
>
I just know some very basic html. lol. ya i know i know. I just havent
had time to set down and learn the things I want to learn until now.
On Tue, 21 Jan 2003 11:00:29 -0500
David T-G <[EMAIL PROTECTED]> wrote:
> Bryan --
>
> [BTW, I could not find your key on us.php.net or eu.php.net; is it on
Bryan --
[BTW, I could not find your key on us.php.net or eu.php.net; is it on a
keyserver?]
...and then Bryan Cassidy said...
%
% Could someone point me to a VERY good doc for learning PHP for a
% NEWBIE!!! Something I can understand from the beginning to the end. YES
Do you have any programmi
Cassidy
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Newbie Questions
Have a look on devshed.com
Bryan Cassidy wrote:
> Could someone point me to a VERY good doc for learning PHP for a
> NEWBIE!!! Something I can understand from the beginning to the end. YES
> I am willing to put my time into lea
Have a look on devshed.com
Bryan Cassidy wrote:
Could someone point me to a VERY good doc for learning PHP for a
NEWBIE!!! Something I can understand from the beginning to the end. YES
I am willing to put my time into learning and reading docs as long as
they are clear and made for what they say
1) To echo the variables name instead of it's value, surround it instead by single
quotes, not double.
echo '$var' OUTPUTS $var
echo "$var" OUTPUTS the contents of $var
2) Checkout the func_get_args() function.
http://www.php.net/manual/en/function.func-get-args.php
HTH!
Martin Clif
10 matches
Mail list logo