Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: eva0212
  • Order by date
  1. eva0212

    Get number of weeks for a month

    Sorry cause no so undestanding Gregorian calendar. Just undestand after read the articles. I mean is numbers of whole weeks. The day should be starting on Sunday.
  2. eva0212

    Get number of weeks for a month

    Actually i want to get total week for a year first. Then from here i need to count number of week for a month accordingly. This is use to generate an annual report.
  3. eva0212

    Get number of weeks for a month

    Is mean that example for January 2008, i have 5 week in this month. I want that can generate this number of week according for the year. Thanks jpadie. I will try the solution you give.
  4. eva0212

    Get number of weeks for a month

    Number of week here mean total number of week in a month. I use code below to get get it. Is it correct? $Total1=max(date('W', mktime(0,0,0,1,25,$year)), date('W', mktime(0,0,0,1,31,$year))); $Total2=max(date('W', mktime(0,0,0,2,25,$year)), date('W', mktime(0,0,0,2,31,$year)))...
  5. eva0212

    Get number of weeks for a month

    Well... how to get number of weeks for a month that for a selected year? is does anybody know how to do this?
  6. eva0212

    Auto Send Email Reminder

    Is that posible that do the auto send email reminder function according to reminder date without use the crontab? Still have others way to done this function?
  7. eva0212

    Pass drop down value use javascript

    Here have an question on passing values using javascript. Below is javascript function. document.all("site_pkid").value; is a drop down list that select data from databse. An the other value is just input text field.I get an Error: document.all("site_pkid") is undefined while running this use...
  8. eva0212

    PHP nested while loops problem

    Hi, I have a problem that in looping of two queries. My code as below: <? $queryWorkOrderStatus = "SELECT * FROM " . $table['work_order'] ." WHERE lower(workOder_status) LIKE LOWER('%" . $keyword . "%') AND site_pkid = $filterId"; $resultsWorkOrderStatus =...

Part and Inventory Search

Back
Top