Jump to content

arsitek

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

arsitek's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm looking for PHP calender and found a good stuff in http://keithdevens.com/software/php_calendar. But I'm confuse how to get content for certain days from database (look "Link or provide content for certain days" section) and customize it into PHP calender codes. Sorry for my bad english Thanks
  2. Many example code wrote array data in static. I always confuse how to change it to run in array data from mysql. Static array data is like tihis: $days = array( 13=>array('/weblog/archive/2010/Apr/13 title=day 13 description','linked-day'), 14=>array('/weblog/archive/2010/Apr/14 title=day 14 description','linked-day'), 15=>array('/weblog/archive/2010/Apr/15 title=day 15 description','linked-day'), 16=>array('/weblog/archive/2010/Apr/16 title=day 16 description','linked-day'), 17=>array('/weblog/archive/2010/Apr/17 title=day 17 description','linked-day'), 19=>array('/weblog/archive/2010/Apr/19 title=day 19 description','linked-day'), 21=>array('/weblog/archive/2010/Apr/21 title=day 21 description','linked-day'), 27=>array('/weblog/archive/2010/Apr/27 title=day 27 description','linked-day'), 28=>array('/weblog/archive/2010/Apr/28 title=day 28 description','linked-day'), ); I tried like this ( ): $con=SQL::app()->db; $sql="SELECT * FROM event"; $rows=$con->Command($sql)->queryAll(); $days=array(); foreach ($rows as $row) { $days=array( $row['day']=>array('link title='.$row['description'].'','linked-day' ), ); } Thanks for help
  3. Anyone now where I can get a Table class which can generate repeat value of columns, vertical or horizontal? Thanks
  4. I'm using Yii and convert all my applications to Yii now... for a newbe on PHP and MVC framework, Yii is amazing.. just try it.. http://www.yiiframework.com/performance http://www.developersummit.com/awards.html
  5. Becouse your background is NET, you can start with PRADO Framework (NET-PHP collaboration). But if you looking for hight performance framework and pure PHP, you can try Yiiframework.
  6. Talking about performance.. please see this.. http://www.yiiframework.com/performance
  7. my be not the best. But just review it.. http://yiiframework.com
  8. Thanks for quick reply.. It like the same my live server now.. Any else recomended setting to PHP development mode?
  9. I'm developed PHP aplications in windows. My application running well when in windows (localhost), but when I upload it to real web server (linux fedora), there is many error appear. In linux, server tell me anything about my code. No one code can be wrong. Linux very sensitive. In windows, everything is oke. How to make my windows PHP web server become sensitive like in linux? Note: I'm installing apache, PHP, mySQL manually with newer version release in my Win XP SP3. 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.