Posts by user3465632 • 173 points
8 posts
-
2
votes2
answers417
viewsQ: Add hours with the Final Countdown plugin
I’m running a countdown system and I’m using "The Final Countdown jQuery" $('#clock').countdown('2015/02/16', function(event) { $(this).html(event.strftime('%D dias %H:%M:%S')); }); <script…
-
4
votes2
answers1384
viewsQ: Sort by day of the week starting by today
I want to sort the results by days of the week I have 7 events, 1 event for each day, and have to order in the following way: Sunday, Monday, Tuesday, fourth, Thursday, Friday, Saturday Assuming…
-
1
votes3
answers2271
viewsA: Find out the next date from the day of the week
Solution: This prints the day next Monday date('d', strtotime("next Monday"));
phpanswered user3465632 173 -
1
votes3
answers2271
viewsQ: Find out the next date from the day of the week
I’m developing a CountDown for a date. What I want is to receive the next day of the month from the day of the week. The problem is it has to be in PHP. Weekday: $dw = date( "w", $timestamp); ( 0 -…
phpasked user3465632 173 -
2
votes1
answer828
viewsQ: Delete data without refreshing the page
I am no longer using extra pages to use functions inside the PHP page. That is PDO use with a php for functions and use everything on the page without loading anything external. My doubt is how to…
-
4
votes1
answer1056
viewsQ: Tracking and posting system (social network type)
I’m developing a new project and I’m creating a profile following system where the goal is to show only the publications of those I follow. Such as a social network. I follow the person, so I get…
-
1
votes1
answer667
viewsA: Update image with timer using AJAX
Hiccup! HTML: <div class="container"></div> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> SCRIPT: setInterval(function () { check_files(); }, 5000);…
-
1
votes1
answer667
viewsQ: Update image with timer using AJAX
I have this function: if ($files_count == 0) { ?> <img src="img/upload.gif"> <?php } And I needed this to update every five seconds refresh on the page. I have tested several AJAX…