Search the web
Sign In
New User? Sign Up
php-objects · Discussions about Object Oriented Programming in PHP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7781 - 7810 of 9235   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7781
Hi All I need to update one database query in joomla. But I don't know where to find out the query. page executed something like this ...
Mayank Sharma
mynk_sharma
Offline Send Email
Oct 3, 2008
7:36 am
7782
Hi,      You can check in the components or modules of this page.   With Regards,   Madan Mohan Satna           (Senior Software Engineer)   ...
Madan Mohan Satna
madanmohan_p...
Offline Send Email
Oct 3, 2008
9:26 am
7783
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...
dea andrea
yayang_dea
Offline Send Email
Oct 4, 2008
3:36 am
7784
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...
Vishal Pawar
javavishal
Offline Send Email
Oct 4, 2008
4:40 am
7785
You can start from http://www.joomla.org/about-joomla/getting-started.html thanks, Aminul ... -- Md. Aminul Islam http://www.shopno-dinga.com Mob:...
Aminul Islam
aminulsumon
Offline Send Email
Oct 4, 2008
5:33 pm
7786
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 ...
Sana Alamgeer
sanalmgr47
Online Now Send Email
Oct 5, 2008
1:27 am
7787
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++) ...
Aminul Islam
aminulsumon
Offline Send Email
Oct 5, 2008
4:44 am
7788
hi, i can't send email from localhost i config php.ini [mail function] SMTP = localhost ; for Win32 only smtp_port = 25 sendmail_from=...
tap haran
tapharan
Offline Send Email
Oct 5, 2008
8:12 am
7789
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 ...
kranthi
u_kranthi001
Offline Send Email
Oct 5, 2008
8:19 am
7790
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...
Sana Alamgeer
sanalmgr47
Online Now Send Email
Oct 5, 2008
10:58 am
7791
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...
Send Email
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...
Send Email
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...
pavan sharma
pavan0907
Offline Send Email
Oct 5, 2008
2:34 pm
7794
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@...
Send Email
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...
Aminul Islam
aminulsumon
Offline Send Email
Oct 5, 2008
9:40 pm
7796
This code may help you <script language=javascript> var box1id = 'box1'; var box2id = 'box2'; var box1index = 0; var box2index = 1; function checkdup() { ...
JoEi
JoEi007
Offline Send Email
Oct 6, 2008
2:48 am
7797
Can u tell bit details what you wana do so that i can comeup with something....!    SaqiB ShaFiquE   ... From: Sana Alamgeer <sanalmgr47@...> ...
Saqib Shafique
s_aqibs
Offline Send Email
Oct 6, 2008
2:11 pm
7798
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....
kranthi
u_kranthi001
Offline Send Email
Oct 6, 2008
3:54 pm
7799
<?php //some php script sleep(1); include("file.php"); //where sleep(1) is a one second to wait before call file.php ?> Is this ?...
LuCiaNo - CeTre
web@...
Send Email
Oct 6, 2008
5:27 pm
7800
yeh thanks ... -- Kranthi....
kranthi117@...
u_kranthi001
Offline Send Email
Oct 7, 2008
3:03 am
7801
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...
kranthi117@...
u_kranthi001
Offline Send Email
Oct 7, 2008
3:22 am
7802
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@...
Send Email
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...
kranthi
u_kranthi001
Offline Send Email
Oct 7, 2008
4:09 am
7804
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@...
Send Email
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...
dea andrea
yayang_dea
Offline Send Email
Oct 7, 2008
6:20 am
7806
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...
kranthi
u_kranthi001
Offline Send Email
Oct 7, 2008
6:39 am
7807
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...
Aminul Islam
aminulsumon
Offline Send Email
Oct 7, 2008
7:30 am
7808
I was trying to run a query that was giving me FITS: $result = mysql_query("INSERT INTO customer_shipping_address ...
Joe Forsythe
jforsythe@...
Send Email
Oct 7, 2008
5:43 pm
7809
Hi, Can anybody tell me what paypal returns with return_url after payment. Thanks Apul [Non-text portions of this message have been removed]...
Apul Gupta
gupta.apul
Offline Send Email
Oct 8, 2008
2:50 am
7810
Dear Friend, dont use this word, because it is a reserved to sql strings dont use numbers too ... try use this: primaries or primar_y ;) To:...
Miguel Machado
miguelmm3
Offline Send Email
Oct 8, 2008
2:51 am
Messages 7781 - 7810 of 9235   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help