Re: [PHP] Mac PHP & MySQL

2006-11-02 Thread Wee Keat Chin
nd you can then switch between PHP4 AND 5? -- Wee Keat Chin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mambo question..??

2005-10-09 Thread Wee Keat
no > luck. so i figured i'd ask here, if anybody has experience with playing with > the code of mambo... I have quite a few years of experience in dealing with Mambo, but I'm definitely no expert. Hope that helps anyway. -- Wee Keat Chin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem detecting HTTPS connection

2005-08-09 Thread Wee Keat
-configurations of Apache that may lead to this problem? It looks like this may not be a problem with PHP at all. I'll have to talk to the server administrator to see if there's a chance his server is configured wrongly. If the answer lies there, I'll close this thread. Thanks agai

Re: [PHP] Problem detecting HTTPS connection

2005-08-09 Thread Wee Keat
added the code provided in the list to the following for your review: http://www.axentonline.com.au/port_test.php https://www.axentonline.com.au/port_test.php I've done a var dump before of $_SERVER and $_ENV and did not find any HTTPS key in the array. Is there another way that I can do thi

[PHP] Problem detecting HTTPS connection

2005-08-09 Thread Wee Keat
ort as 80. Please assist. Thanks. PHPInfo: --- Apache-AdvancedExtranetServer/2.0.50 Mandrakelinux/7.2.101mdk mod_ssl/2.0.50 OpenSSL/0.9.7d PHP/4.3.8 -- Wee Keat Chin Protocol Networks p: 1300 131 932 e: [EMAIL PROTECTED] h: www.pn.com.au -- PHP General Mailing List (http://www.php.ne

[PHP] Converting integer type to long

2005-08-02 Thread Wee Keat
ttype() nor type-cast a variable as a long. The workaround for this seems to be to use pack()." I've looked at pack() function and tried it but I don't think I'm getting it right because the instruction is not clear to me ( I don't have programming background). I've done

Re: [PHP] Breaking up data efficiently -- closed

2005-06-27 Thread Wee Keat
; $bits = split("[|,]", $booking->booking_flight_details); > $size = count($itenary); > for ( $i = 0; $i < $size; $i += 3 ) { > $path[$i]['location'] = $bits[$i]; > $path[$i]['country'] = $bits[$i + 1]; > $path[$i]['datetime'] = $bits[$i + 2]; > } > -- Wee Keat Chin Protocol Networks p: 1300 131 932 e: [EMAIL PROTECTED] h: www.pn.com.au -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Breaking up data efficiently

2005-06-27 Thread Wee Keat
#x27;], $path[$i]['datetime']) = explode(',', $itenary[$i]); } /* END CODE */ *Question*: Is the above the code an effective way to do it? Or is there a better/faster way? Somehow, it feels like there's lots of things going through the above code. Please ad

Re: [PHP] Zend Optimizer not installed

2004-10-01 Thread Wee Keat
do not know what version they are running on. Hope that helped. Yours, Wee Keat Chin http://www.visualdensity.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Nested Arrays

2002-12-26 Thread Wee Keat [Amorphosium]
- Original Message - From: "Beauford.2002" <[EMAIL PROTECTED]> To: "Wee Keat [Amorphosium]" <[EMAIL PROTECTED]> Sent: Friday, December 27, 2002 12:13 PM Subject: Re: [PHP] Nested Arrays > Quote: "I have looked at the various array functions a

Re: [PHP] Nested Arrays

2002-12-26 Thread Wee Keat [Amorphosium]
> Is there anyway to do a nested array, I have looked at the various array > functions and can't figure this out (if possible). > Try reading up on multidimensional array... http://www.onlamp.com/pub/a/php/2001/06/07/php_foundations.html http://www.onlamp.com/pub/a/php/2001/06/21/php_foundation

Re: [PHP] Tutorials on OOP

2002-12-22 Thread Wee Keat
n2.php As well as these ones on DevArticles.com http://www.devarticles.com/art/1/241 http://www.devarticles.com/art/1/245 http://www.devarticles.com/art/1/262 http://www.devarticles.com/art/1/285 HTH! Yours, Wee Keat "Good timber

Re: [PHP] URL path problems

2002-12-19 Thread Wee Keat
> Suppose my web domain is http://abc.com > There is a administration directory in my wwwroot which is used to store the > administrative control pages. > > However, from now on, everyone can access the administrative pages through > the addictive path to the domain such as: > http://abc.com/admini

Re: [PHP] Verisign Credit Card Processing with PHP

2002-12-17 Thread Wee Keat
I just came across an article on Zend regarding this. It provides some examples and guidelines on how to use PHP with Verisign's PayFlow Pro... Hope this benefits. The link is at: http://www.zend.com/zend/tut/tutorial-staub.php - Original Message - From: "Max Clark" <[EMAIL PROTECTED

[PHP] How to loop diplays of 4 column of items, every row?

2002-12-06 Thread Wee Keat [Amorphosium]
ic flow of scripting this one.     Thank you so much in advance!     Yours,   Wee Keat Chin   --"Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe." - Albert Einstein -- PHP General Mailing L

[PHP] PHP & Javascript compatibilty

2002-11-29 Thread Wee Keat [Amorphosium]
is so? What can I do to get Javascript working with PHP with ease? Any articles on this? Thanks a lot... again. :) Yours, Wee Keat Chin -- "If you cannot win, make the one ahead of you break the record."

[PHP] How good is PHP to ASP?

2002-11-10 Thread Wee Keat [Amorphosium]
e. So, how can I prove to them that PHP is a much better language to use? Can anyone point me to the right resources for me to show and prove to my clients? Thanks a lot and sorry if this is the wrong place to ask this question. Yours, Wee Keat

[PHP] More Detailed Gettext() article?

2002-10-05 Thread Wee Keat [Amorphosium]
could find is from O' Reilly but it was too brief to let me start on anything... Please help. Thanks a million... as usual! Yours, Wee Keat Chin -- "If you cannot win, make the one ahead of you break the record."

[PHP] Stoopid Question - PHP.ini path?

2002-08-11 Thread Wee Keat
, how do I do this? I tried searching over the web most of them talk about configuration.. I can't seemed to find anything on changing the path of the PHP.ini file. THank you so much in advance. Yours, Wee Keat

Re: [PHP] How to become a good PHP coder?

2002-07-30 Thread Wee Keat
Hi peter... Wow!! That's a heck lot of info for me to digest! Thank you so much for all that trouble! Very useful stuffs... can't thank you enuff... Yours, Wee Keat "Good timber does not grow with ease; the stronge

Re: [PHP] How to become a good PHP coder?

2002-07-30 Thread Wee Keat
usly to this mailing list. Yours, Wee Keat "Good timber does not grow with ease; the stronger the wind, the stronger the trees." - Original Message - From: "César Aracena" <[EMAIL PROTECTED]> To: &

[PHP] How to become a good PHP coder?

2002-07-30 Thread Wee Keat
y not critical) of your projects as an excercise so that I can start a journey of discovery? Thanks to all of you. And most of all thanks to all of your generosity. Yours, Wee Keat "Good timber does not grow with ease; the st

Re: [PHP] fullname

2002-07-29 Thread Wee Keat
Is this easier for you? $fullname = $session["f_name"]." ".$session["l_name"]; - Original Message - From: "Mantas Kriauciunas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: 30 July, 2002 7:11 PM Subject: [PHP] fullname > Hey php-general, > > is there some other easyer way t

[PHP] PHP + Form + Session Problem. Please help

2002-07-28 Thread Wee Keat
Hi all, I have been working on an online shopping thingy for quite a while and I have encounter a strange problem which could not be solved. Deeply needed your help. Problem: Its very hard to explain this. So, if you do not quite understand it, please tell me, I will send some screenshots

[PHP] Please help with Array..

2002-07-19 Thread Wee Keat
sh to finish my project... :( Thanks s much in advance for your time. Yours, Wee Keat Chin --- "Man is only truly great when he acts from his passions."

Re: [PHP] Please Help with LOOP!! - Questions Answered!!!

2002-07-18 Thread Wee Keat
s-serif\">",$query_data["prod_desc"],""; > WK> echo " Helvetica, sans-serif\">","$",$price,""; > WK> echo " name=\"choice",$count,"\" value=\"", > $query_data["

[PHP] Please Help with LOOP!!

2002-07-18 Thread Wee Keat
$",$price,""; echo "\n"; } } The result was irritating... it came up with the same name, which is "choice1" all the way like: ... Am I doing it the wrong way? If so, how should I do it? Please pleas help... thanks Yours, Wee Keat "Good timber does not grow with ease; the stronger the wind, the stronger the trees."