Jump to content

alvin567

Members
  • Posts

    161
  • Joined

  • Last visited

Everything posted by alvin567

  1. say I have a 5x5 array, how do i slot in a 4x4 array into position 5x5?
  2. Is there any software tester here?
  3. Understand loop and array well. And the rule is to never repeat yourself in coding.
  4. To be able to understand the other programmer thoughts you will have to understand their mental model well.
  5. How can i use a debugger,like xdebug?
  6. Honestly,I think w3school is not a good resource for php, they didn't even teach what is scoping rules for php?
  7. thats great!!
  8. https://billing.stablehost.com/aff.php?aff=472 I can suggest stablehost, fast response to help, 1.99 a mth for 1gb plan, never failed me before.
  9. glass fish server is for java web application
  10. To give more details: http://answers.yahoo.com/question/index?qid=20120604183959AAo9Qhk
  11. Can you make it more readable?
  12. How any ideas?
  13. php array,say in a associative array, foreach($sales as $sale){ $sale['Sales']['Year'] $sale['Sales']['volume'] } I want to sum up all the volume together how can I do so?
  14. on _export, what are the parameter and fields?
  15. Ok,for example if I search for 11-19 will I get the value can i adjust the values? $practitioners = array('1' => 1, '2'=> 2,'3'=>3,'4'=>4,'5'=>5,'6'=>6 ,'7'=>7,'8'=>8,'9'=>'9','10'=>10,'11-19'=>'11-19','20-40'=>'20-40','Over 40'=>'Over 40' );
  16. Ok,there is a format issues, for example 1994 I can to change to if i have LPI 94-038 2012-011 I want to change LPI 2K11-011 lets make it more versatile!
  17. array_push($conditions,array('Claim.created BETWEEN ? and ?' => array($startdate, $enddate))); there seems to be an error how do I go about it?
  18. How do I change 2011-011 to LPK-2k11-011???
  19. Actually I saw a way to do it $data1 += array(1); isn't this pushing one array to the right?
  20. Ok what i mean is is it possible to get all the values? $claims = $this->Claim->find('all', array( 'recursive' => -1, 'order' => 'Claim.reference ASC', 'conditions' => $conditions, 'joins' => array('INNER JOIN renewals AS Renewal ON ( Renewal.id = Claim.renewal_id ) ') ));
  21. it was solved,you showed me how to do it in another thread,thanks!
×
×
  • 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.