Jump to content

suresh64633

Members
  • Posts

    61
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male
  • Location
    India

suresh64633's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi I want to display time as per client locations. And for this i need client Time Zone to set through date_default_timezone_set() function. OR any one having another way will be appreciated. Thanks!!
  2. Dear All, I want to make image from 72 dpi to 300 dpi with PHP (ImageMagick). Please guide me urgently. Thanking you,
  3. Hi Guys I don't know, this is the correct category to post this issue. I am integrating Shindig in my Local Machine which is on window OS. I followed the instruction given as per http://www.chabotc.com/guides/shindig_install/. It gives me error as: Error Error parsing gadget xml:  -^ Fatal Error 4: Start tag expected, '<' not found Line: 1 Column: 1 Thanks.
  4. Thanks salathe It is really usefull.
  5. Hi guys I got the query # OPTION ONE: To find 3rd highest select * from salary e where 3 =(select count(distinct salary) from salary where e.salary<=salary) # OPTION TWO: It find only 2nd highest. SELECT max( p1.sal ) FROM jos_salary p1, jos_salary p2 WHERE p1.sal < p2.sal
  6. Hi, Do PHP have Exception Types? If yes, what are they? Thanks!!
  7. Hi Guys How do i get 2nd highest values(say salary) without using Sub-query or Limit? Many Thanks.
  8. Hi, Try this regular expression. SELECT '1234/56/78/sdf' REGEXP '[0-9]{4}/[0-9]{2}/[0-9]{2}/[a-z]'; Thanks
  9. Suppose i have a table "city" which store detail as city_id ,state_id and city name city_id state_id city_name 1 1 APO 2 1 FPO 5 1 Bethel 6 3 Indian 7 3 Anchorage 8 3 Anch 9 3 Fort Richardson If i fire a query like SELECT * FROM city GROUP BY state_id It will show single record of each group like: city_id state_id city_name 1 1 APO 5 3 Bethel But i want it must show 2 record of each group like: city_id state_id city_name 1 1 APO 2 1 FPO 6 3 Indian 7 3 Anchorage
  10. How can i convert my time string "10:00 PM" to "22:00:00";
  11. I set the Environment Variables (variable Name: console AND variable value ='C:\wamp\www\cake\cake\console') and restart my PC. And run following command on DOS prompt.I am getting this error. C:\wamp\php>php c:/wamp/www/cake/cake/console/libs/bake.php Fatal error: Class 'Shell' not found in C:\wamp\www\cake\cake\console\libs\bake. php on line 36 C:\wamp\php>
×
×
  • 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.