Jump to content

praveenhotha

Members
  • Posts

    27
  • Joined

  • Last visited

About praveenhotha

  • Birthday 07/17/1985

Profile Information

  • Gender
    Male
  • Location
    Bangalore

praveenhotha's Achievements

Member

Member (2/5)

0

Reputation

  1. if you wish to populate the second select list based on the value selected [month in this case] list, i would suggest you use ajax to load the second list. check w3schools for the ajax tutorial and a little bit of javascript could solve your problem. Do message me if you need a sample code.
  2. Hi, I tried a similar approach but heard that unload is unreliable, so I am planning to make an ajax call to the system every 1 minute to update the last activity of the user. (This sure would make increase the size of the table when more users come in) Do you think this is the right way to do? Please advice if there is a better way of doing this.
  3. are u using mysql_pconnect? If so, the connection would still remains even after the script ends.
  4. but javascript approach would bring in the back button/page refresh issues, We are trying to provide a platform for users to host their apps. The problem occurs only in IE 8, when we try to authorize and redirect him back to the url he provided.
  5. thanks for the link, How else can this be implemented, primarily we need to load an external application in the page. I thought iframe is the best option.
  6. We have an iframe in our page which does a meta refresh to a url after validation, in all other browsers the url passed opens in the same iframe, but in IE 8 it also opens a new window with the provided url. What could be the issue? Thanks in advance. Praveen
  7. try using from_unixtime(date,'%Y %M %D) as tm group by tm
  8. Hi I would like to sort a list of numbers in descending order but if the value is 0, they should appear at the beginning of the list. How can I implement this in query. Thanks in advance.
  9. Do a left join on members table i.e, members left join pics .. that will fetch all the members irrespective of their photos..
  10. try this link http://www.devbridge.com/projects/autocomplete/jquery/ if u want to try out jquery.. its pretty easy to use..
  11. It doesn't throw any error, but prints five 4s.
  12. Can anyone please explain the following code snippet. I was expecting the output to be 0,1,2,3,4 ?? ??? <? class AnyClass { public $member; public function __construct($val) { $this->member = $val; } } $manyObjects = array(); $obj = null; for($i = 0; $i < 5;$i++) { $obj = new AnyClass($i); // create new instance $manyObjects[] = &$obj; } for($i = 0; $i < 5;$i++) { echo "<br>Value:".$manyObjects[$i]->member."\r\n"; } ?> Output : 4 4 4 4 4
  13. I am checking the file extension for the file type,presently. Just thought that it might be more user friendly if only one particular type of files are displayed in the dialog(if it is possible). Thanks.
  14. When I click the browse option, it lists all the files present in the folder but if i cancel after selecting for eg. an html file, the second time I click the browse button, it displays only the html files in the folder. Can I do this on the first click of the browse button? I want to control the files shown as I know what type of files need to be uploaded.
  15. How to distinguish between mouse click and dbl click on the same element? The click event fires before the dblclick event. How can I cancel the single click event. Thanks in advance.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.