Skip to content

Tag: php

Yii2 Migration move data to other table

I have table: and I have created table I want to move some data(date_used & used_by_user_id) from table ticket to other table used with migration yii2 in the query. But I don’t know how to do it without ActiveRecord & array. Answer Only sql. Yii-migration not supported select in the insert into

display event in calendar | codeigniter

My code is work fine in add new event to sql database . but Not display the event stored in sql inside the calendar. I WANT TO DISPLAY THE EVENT INSIDE THE CALENDAR JS Controller Model Answer I SOLVED MY PROBLEM BY MY SELF MODEL AJAX – ADD EVENT – DISPLAY EVENT – REFRESH CALENDAR

Carbon parse to ISO8601

I am trying to get the current time and format it like: “2018-09-26T21:40:29+02:00” But when I try: $isoDate = CarbonCarbon::now()->format(‘c’); as I understood passing a c to format function …