Hi All, Here is a snip of what happens when i try to install php-4.3.7 from source on my RedHat9 box which already has Apache2 and ph-4.2.2 installed with...
My question is how did php get installed in the first go when i installed my system with these options. Chances are that you are using the PHP that came with...
... Yeah I am using php-4.2.2, the default with RH9. ... Do you mean I will actually have to recomplie Apache with all its modules again on my machine. Is...
BlueLark.com is looking for an experienced, self-motivated, and energetic technical lead to join our team building innovative internet applications. The...
Hello, Beanarchitect.com is looking for an experienced, self-motivated and energetic technical lead to join our team building innovative internet applications....
Hello Folks, You might be knowing that the annual Linux Mega event Linux-Bangalore 2004 has been annouced. Hop http://linux-bangalore.org/2004 in case you have...
Hi ! Please elaborate as to what u want to do. I mean do u want to display info for the images that is stored in database? Do u want that each row should...
... ok i think i have got your problem i will try to solve this if you have an array $result lets say which contains 1. a fields primary key 2. some...
hav a look @ the image http://www.aquaciti.com/temp/clipboard.jpg This is how i want to display (xx amount of records) horizontally... i got around 2000+...
I think i have understood u a little bit. If i am not wrong your main problem is to generate rows with 2 columns dynamically. Below is the code which will give...
... Shoan - that was a pretty straight Yes or No question as I read it.... Tarique -- ============================================================= PHP...
Hi, I need to make a multilingual site out of an already existing english site. What would be best way for long term maintanability? My constraints are that...
... For really long term using gettext would be the best option ... If it is going to be a large application then consider using 1 file per language and...
... You mean like an 1 language include per page? Something like index.eng.inc, index.fr.inc and login.eng.inc, login.fr.inc ... Yeah...quite a lot of people...
... No something like in lang.en.php if (defined('INDEX_PHP')) { $hello = "Hello World"; } And in index.php you have define ('INDEX_PHP',true); after which...
Hi For me the best option for multilingual website is using smarty as template engine and create different folder of template for each language. You can easily...
... The HTML is needlessly replicated in this case and maintaining Smarty templates is not a trivial task for anything but small projects. Besides working with...
... In addition, should you need to add a new language support in the future, you will need to redo all the HTML templates. Using language files simplifies...
... That brings up the point that you should consider a mechanism for fallback to default lang when translation is not available else your users will end up...
... I think I forgot to mention that we are using smarty for templating. Looking through the smarty manual I came across the config files and config_load....
... Well depends how you view it - I view Multilingual functionality as program logic - rather than presentation logic (more convinient that way for me) Having...
... How would it be more convenient considering it to be part of the program logic? I am not sure whether the program needs to be langage aware. Peace, Shoan....
... Because our programs go on the lines of $s->assign("Welcome", $welcomePhrase); OR If ($error){ $s->assign("errors", $errorList); } The code is much more...