Posts by Wagner • 157 points
17 posts
-
1
votes0
answers18
viewsQ: Check open and closed queries to include event in the calendar
I am developing an online calendar and need to check when it includes an event if there is a date and time in scheduled and open consultations. Queries marked in the database are "no". Open queries…
-
0
votes1
answer232
viewsQ: BETWEEN PHP compare dates
I’m making an online schedule and I need to check the schedules that are already scheduled so as not to conflict with the schedule to schedule. I’m using PHP’s BETWEEN to compare times, but it’s not…
-
1
votes0
answers172
viewsQ: Eventclick Full Callendar pass id to PHP
I’ve managed to get the variable id in a div with this $('#eventID_faturar_outro').val(event.id); How can I pass the value of Event.id for php via jqueery, so I can check if there is an event id…
-
-3
votes1
answer350
viewsQ: Rename id with jquery
I have this code where I need to change the name of two id when I click on a calendar event eventClick: function(event, jsEvent, view) { endtime = $.fullCalendar.moment(event.end).format('h:mm');…
-
2
votes1
answer33
viewsQ: Insert id in data-formid="" from jquery
I need to include on the data-formid="" the id of each event clicked, so that it is different and give u Ubmit with ajax in each form. I’ve managed to pass the id that way: Html <div…
-
5
votes2
answers150
viewsQ: Add values from a select when repeat client id
How I could sum the values of a select when repeating the account id? Example I use that select: $servername = "localhost"; $username = "username"; $password = "password"; $dbname = "myDB"; //…
-
1
votes1
answer39
viewsQ: Confirmation of form action
I have this code to delete a bank record. How can I put a jquery (yes no) form action confirmation in my code? $('#deleteButton').on('click', function(e){ // We don't want this to act as a link so…
-
0
votes1
answer334
viewsQ: Glyphicon for bootstrap 4 does not work
I am using this Cdn for the Glyphicon css link, the problem is that I am using bootstrap 4, and so it is giving conflict, what would be the right url of Glyphicon?…
bootstrap-glyphiconsasked Wagner 157 -
0
votes0
answers77
viewsQ: Carousel bootstrap scrolling entire
I have this code where when you click the "next" button, you scroll only 1 image at a time. Knowing that Carousel is multi-item with 4 columns. How do I so that when you click the next button,…
-
1
votes1
answer52
viewsQ: Bring to PHP a div
I’m unable to bring the contents of a div to PHP with Jquery. What’s the matter with me? My code Html <form role="form" name="form1" id="form1" method="post" action=""…
-
0
votes0
answers128
viewsQ: Upload images when you do Crop with PHP
The Crop in the image works, generating the cropped image at the end. How can I upload the cropped image (Crop) with PHP? PHP () <?php // memory limit (nem todo server aceita)…
-
1
votes3
answers363
viewsQ: Retrieve typed data in the wysiwyg Bootstrap editor
How do I get the data typed in the form where I use the wysiwyg from Bootstrap? http://mindmup.github.io/bootstrap-wysiwyg/ I am doing so, as I was instructed, but does not pass the value of #editor…
-
0
votes1
answer58
viewsQ: Repeat a number of times in an interval of days
I have this code that repeats a number of times the day of each week. $hoje = new DateTime(); $semana = new DateInterval('P7D'); $repeticoes = 3; // Printa primeira data antes de somar os dias echo…
-
0
votes1
answer24
viewsQ: Mark the day of each week by repeating a number of times
I am making a schedule and need to create a form where repeat a number of times the day of each week. Example: Today 09/11/2018 I want you to repeat three times a day of the week? 09/11/2018…
-
1
votes1
answer70
viewsQ: Print dates 15 days forward from a start date
I have this code that I printed out the dates stipulating the beginning and the end between them: How would I make the system calculate 15 days after the $dateStart? For example: If that was the…
-
0
votes1
answer22
viewsQ: Add text to an array and print with json_enconde from PHP
I have this php code that printed the array of select mysql output: He currently prints the name, date and end time and start of the event. How I would add an item to the array, such as the "id" of…
-
1
votes2
answers264
viewsQ: How to print the selected name in the Bootstrap confirmation modal?
I have this code to confirm a form in a Bootstrap modal. How do I get the name you selected in the select of the print form in the bootstrap confimation modal? $('#submitBtn').click(function() { /*…