All Questions
Tagged with recurrence php
21 questions
-1
votes
1
answer
686
views
how to set reminder using jquery?
In the database, project_details table is there. I am fetching the data from database and result like json given below;
Recurrence start date is there in the database table but I am not saving the end ...
0
votes
1
answer
53
views
How to build an array[string] from an unknown amount of arrays PHP [closed]
I doubt this is the right way to do this.
What happens?
You feed a method any amount of arrays...
[
'jupiter',
'saturn',
]
[
'is',
'was',
]
[
'old',
'big',
'loved',
]
and ...
2
votes
0
answers
895
views
Prevent recursion in a Laravel Eloquent's self relationship
Consider a table of nested locations which has columns for the location_id, its name and a parent_id. This parent field lets you know that you're in a nested location.
Example setup:
Locations
------...
-2
votes
1
answer
94
views
calculating every next month of a given date using php
I want some help about calculating every next month of a given date from the first date of each month
for example :
the event date is: '2019-07-15' then if the start date is: 2019-08-01
the ...
0
votes
2
answers
100
views
Nested dataset structure in PHP
I'm trying to implement an object oriented version of a nested dataset structure in PHP (another description of the structure). I've already created a node implementation:
class Node
{
private $...
1
vote
1
answer
351
views
Rrule from Datetime collection
I'm making a recurrent activity calendar system and i'm facing an issue. My activity has a collection of Period items, which contain a StartedAt Datetime and an EndedAt Datetime.
A lot of libs allow ...
0
votes
1
answer
2k
views
How to get first, second, third and fourth Monday of each month?
I'm working on an event based website. The user can create multiple events during the year and here is how the form works.
We have one select box with the following options :
The first
The second
The ...
0
votes
1
answer
490
views
How to loop over weeks and find the exact date of some days?
I'm working on a website where the user can create some events every X days (where X is the name of a day in the week). Then, he needs to enter the number of events he wants to create in the future.
...
3
votes
1
answer
995
views
PHP Monthly Recurrence
I'm Using PHP RRule for Recurrence in my Project.
Here Daily and Weekly Recurrence are working fine.
I don't know how to use monthly Recurrence in my scenario.
Monthly scenario:
First Sunday of ...
0
votes
1
answer
1k
views
How to add a recurring calendar event through Outlook 365 Rest Api?
I am using PHP to access the Outlook 365 REST API. I am sending following payload via POST to https://outlook.office.com/api/v2.0/me/events and receiving a 500 error in return. How is my payload ...
5
votes
1
answer
2k
views
Outlook Calendar REST API Recurrence Object
I am retrieving Calendar events from Outlook365 using their RESTful API as document here https://msdn.microsoft.com/en-us/office/office365/api/calendar-rest-operations
When the event has a recurrence,...
0
votes
1
answer
73
views
php CMS, the code is working from index.php, but it is not working from deeper CMS project folder
I have simple recurrent function to output array values to the webpage. It works perfectly if i use it from cms3\index.php . But is works only partially (the first round) if i use it from cms34\ww....
1
vote
2
answers
459
views
Can't get recurrence API Google Calendar PHP
I am trying to get the recurrence of an event with the Google Calendar API in PHP, and it doesn't show me the recurrence.
The following code is the code I'm using:
$params = array(
'...
2
votes
1
answer
122
views
Check that recurrent event, that happens same time (but can be repeated in different days) cross itself
I have an event, that has start date, "2013-12-06 21:00:00", duration and repeat days bitmask.
Problem is that user can specify duration > 24 hours and select repeat days that event will cross itself.
...
1
vote
1
answer
214
views
Recursive menu, write all parents and childs
I need a little help with recursive dropdown menu.
Here is my array:
Array
(
[0] => Array
(
[cat_id] => 4
[cat_name] => Plátna
[cat_nodia] =&...