strong-storm Posted March 19, 2005 Report Share Posted March 19, 2005 Lieta tāda, ka mans mysql provaiders atrodas ārzemēs un vinjam atšķiras krietni laiks no mana hostera laika. Vai ir iespējams kkā njemt no mana hostera laiku un saglabāt to, bet lieta tāda, ka man pēc tam vajadzēs datus dzēst pēc laika ti ar NOW(), Interval 2 week. eh baigais sviests sanaaca, bet cerams, ka sapratiis. :) Link to comment Share on other sites More sharing options...
hmnc Posted March 19, 2005 Report Share Posted March 19, 2005 pievienojot ierakstus lieto nevis mysql iebūvēto now(), bet gan PHP funkciju date() Link to comment Share on other sites More sharing options...
strong-storm Posted March 19, 2005 Author Report Share Posted March 19, 2005 jā, tā es meiģināju, be kad izpilda mysql_query('DELETE LOW_PRIORITY FROM book WHERE `date`<NOW()'); ta izdz\e\s visus ierakstus, kaut vai ir tādā pāšā formātā ierakstiits 2005-03-19 18:23:45 Link to comment Share on other sites More sharing options...
hmnc Posted March 19, 2005 Report Share Posted March 19, 2005 nu tak ne tikai pievienojot aizstāj now() ar date() ;) dooh! visur, kur tu čakarējies ar laikiem iekš to kreisā mysql servera, ņem klāt date() no php servera uz kura domājams ir tas pareizais laiks :) Link to comment Share on other sites More sharing options...
strong-storm Posted March 20, 2005 Author Report Share Posted March 20, 2005 ta man now() aizstaat ar date() ? un viss buus ok? Link to comment Share on other sites More sharing options...
Venom Posted March 21, 2005 Report Share Posted March 21, 2005 var arī mysql galā pievienot laika atstarpi, e.g. ...<DATE_ADD(NOW(),'02:05') //ķip kompensējam 2 stundu un 5 minūšu atšķirību Link to comment Share on other sites More sharing options...
hmnc Posted March 21, 2005 Report Share Posted March 21, 2005 strong-storm: nē! now() vietā nelieto date(). lieto šitā: $now = date('Y-m-d H:i:s'); $query = "INSERT INTO table VALUES('name','title','text','$now')"; resp. pēdējais būs tas tavs datetime lauks. šādā veidā tu ievietosi PHP servera laiku. Link to comment Share on other sites More sharing options...
Recommended Posts