Re: [PHP] Web application design considerations - a good reference ?

2009-06-02 Thread mrfroasty
I am on the same position, half a year ago I tried to wrote the PHP application (sake of learning) using from scratch approaches. Now I want to have a production application, I am bussy to start over and writting/intergrating everthing using a framework. I think for my case is Joomla... So I think

Re: [PHP] best solution to ecommerce web pages

2009-06-07 Thread mrfroasty
Alain Roger wrote: > Hi, > > i'm currently investigating what would be the best solution to develop an > e-commerce web site. > should i use some PHP template engine like smarty or CMS like Joomla, Drupal > ? > > thanks a lot, > > Joomla +++ -- Extra details: OSS:Gentoo Linux profile:x86 Hard

Re: [PHP] open source forum

2009-07-26 Thread mrfroasty
forum before. Thanks for the input... GR mrfroasty -- Extra details: OSS:Gentoo Linux profile:x86 Hardware:msi geforce 8600GT asus p5k-se location:/home/muhsin language(s):C/C++,VB,VHDL,bash,PHP,SQL,HTML,CSS Typo:40WPM url:http://www.mzalendo.net -- PHP General Mailing List (http

Re: [PHP] open source forum

2009-07-26 Thread mrfroasty
Thanks I will have a look at those list GR mrfroasty David Robley wrote: > mrfroasty wrote: > > >> Hello, >> >> I need some advice in picking a PHP forum for a group of people, I know >> there are couple of them but could somebody from here give

Re: [PHP] open source forum

2009-07-27 Thread mrfroasty
translate the sofware :-) GR mrfroasty K. N. Lesmer wrote: > On Sun, 26 Jul 2009 14:50:03 +0200 > mrfroasty wrote: > > >> Hello, >> >> I need some advice in picking a PHP forum for a group of people, I >> know there are couple of them but could somebody from

Re: [PHP] open source forum

2009-07-27 Thread mrfroasty
software to do the job. I really appreciate the input Cheers. GR Mrfroasty Bob McConnell wrote: > From: mrfroasty > > >> I need some advice in picking a PHP forum for a group of people, I >> > know > >> there are couple of them but could somebody from

Re: [PHP] What PHP version are you using?

2009-10-29 Thread mrfroasty
5.2.11 here... Gr mrfroasty Israel Ekpo wrote: On Thu, Oct 29, 2009 at 11:47 AM, tedd wrote: At 11:10 AM -0400 10/29/09, Israel Ekpo wrote: Hi Guys, I just want to conduct a quick survey to find out what version of PHP people are using in their production environments

Re: [PHP] Uninstalling PHP?

2010-02-27 Thread mrfroasty
Hello, I think everyone has their own preference on working/development setup.If you are comfortable with Window OSS, I guess shifting to Linux might take you totally out of your goals. In my case I prefer playing around Gentoo Linux, so my development setup is built around Gentoo Linux.But I

Re: [PHP] gentoo php

2010-03-02 Thread mrfroasty
On 03/02/2010 04:06 PM, Kaushal Shriyan wrote: Hi, I used simplexml as use flag and did emerge -av php. I still get the same below issue. Can you provide us with data that indeed you have enabled important useflags on that php which you have compiled? You also need to restart/reload apa

Re: [PHP] Want to learn to work with Zend Framework?

2010-03-04 Thread mrfroasty
Looks expensive, definately NO On 03/04/2010 08:05 PM, Debbie Otterstetter wrote: Zend has an upcoming Framework: Fundamentals class that some of you may be interested in. You can find more information at this webpage: http://www.zend.com/en/services/training/course-catalog/zend-framework Cl

Re: [PHP] Recommendation for online PHP editor please....

2010-04-25 Thread mrfroasty
SSH + MC i.e http://www.midnight-commander.org, you will get syntax high lights. P:S **Any CLI program will do the job. On 04/25/2010 10:01 AM, Angus Mann wrote: > HI all. I'm looking for a recommendation for an online PHP editor. > > Here's what I mean > > I mean a PHP program I can inst

[PHP] Re: Passing large object between methods

2010-06-09 Thread mrfroasty
data = "B foo"; //call a function to add extra info on $obj_A $obj = $this->addExtraInfo($obj); //debug print_r($obj); echo ""; } public function addExtraInfo($obj) { $obj->recs = "B bar"; return $obj; } } class B { pu

Re: [PHP] Connecting to MySql with PHP

2010-10-04 Thread mrfroasty
not accessed...Can you actually access the myql server with anything else like phpmyadmin or cli ? Gr mrfroasty On 10/04/2010 11:21 PM, a...@ashleysheridan.co.uk wrote: > Have you installed the php mysql module? Basically, it tells php how to > connect to mysql. > > This question h

Re: [PHP] Switch Statement

2013-09-29 Thread mrfroasty
Hello, I suggest you put default in that switch statement and var_dump the $_POST.That should be enough for a programmer to pin point what goes wrong. P:S **You might want to consider versioning your codes to go back into its history to see what has changed. Muhsin On 09/29/2013 04:33 AM, Ethan

Re: [PHP] Re: PHP frameworks

2011-07-23 Thread mrfroasty
Investing your time on Zend Framework is worth it.I do mostly php development under Magento Platform, and Zend Framework becomes one of the vital skills I need.Apart from that, ZF is also a well thought Library that is a joy to work with.As one mentioned, the best part of it it gives the option to

Re: [PHP] Closing PHP tag best practice?

2011-07-24 Thread mrfroasty
What I know its a best practice to leave the closing tag in a script with one php opening tag.Mostly this applies in a script that present a class, I think its not correct to leave closing tags in template kind of script where you have several php tags. Gr Muhsin On 07/24/2011 02:33 PM, Geoff L