Hi,    You can check in the components or modules of this page.  With Regards,  Madan Mohan Satna          (Senior Software Engineer)  ...
ya... its locate at module/component folder. find the file related to the page... :) there, at component folder includes some sub folder with prefix com_ so...
Hi all, I am new in Joomla development, Please tell me where the best joomla help to create the websites is available. Thanks & Regards, Vishal [Non-text...
hello all, please tell me how to cmpare two lists' items. pleassssssssse i have been able to find the code in javascript. please help me regards SanaAlamgeer ...
hope this example will help you $A=array('first','second','third','forth'); $B=array('another','fifth','second','first','hello'); for($i=0;$i<count($A);$i++) ...
Hi, it seems u dont have an SMTP server running on localhost:25. ensure that the SMTP server is running on localhost:25. and also note that the mail function ...
thanks for helping me but this code is actually useless to me. the situation is... there r two list boxes on my site having same items in both. i want user to...
Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Oct 5, 2008 11:40 am
7792
Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Oct 5, 2008 11:40 am
7793
Hi try assuming id of two selectbox as sb1 and sb2 on onchange of sb1 call fnRemoveSelected('sb1','sb2') and for sb2 call fnRemoveSelected('sb2','sb1') call...
Rather than go to all that trouble, why not just AJAX to knock the duplicate items off the 2nd list when they're selected in the first? You'll still have to do...
Joe Forsythe
jforsythe@...
Oct 5, 2008 4:02 pm
7795
Yep. the code is 100% useless if you wish to use Javascript but if you decide to use PHP for validation then the code is 100% workable and valuable. just a...
This code may help you <script language=javascript> var box1id = 'box1'; var box2id = 'box2'; var box1index = 0; var box2index = 1; function checkdup() { ...
Hi, i am currently executing a php script a.php. the script a.php should call itself after 'n' number of seconds. here 'n' is a variable number of seconds....
i forgot this script has a prob "Maximum execution time of 60 seconds exceeded" mine needs to execute continuously for about a week. (file.php will run once...
I'm afraid you've got truly limited options, as that is *exactly* what cron jobs and scheduled tasks are meant for. If you don't have permissions to set up a...
Joe Forsythe
jforsythe@...
Oct 7, 2008 3:38 am
7803
yeh i agree with you... had the time interval been constant i would hav requested the server admin to setup the cron jobs for me. since it is variable i want...
What is the end result/output of what you're going after? If you give us some details on what it's going to be doing after the processing happens, maybe we can...
Joe Forsythe
jforsythe@...
Oct 7, 2008 5:54 am
7805
save your last time as session... and then, compare with now time... substract now time with the last time saved in session... if larger than $x minute... then...
yes.. the project i m doing is to stimulate a virtual cricket environment.(here nearly 5 T20 matches will take place with nearly half an hour gap between the...
There are two ways you can do it. First if you want your script a.php will wait *n* seconds and then load another page. then, use *sleep(n)* function. In this...