Posts by João Alpoim • 171 points
7 posts
-
1
votes1
answer970
viewsQ: PHP- Display query results in a select
I input an admin to write a message to a specific user. The user will be selected by a select that fetches the names from the user table and lists them all. After selecting someone, the admin can…
-
1
votes0
answers66
viewsQ: Fullcalendar remove Ajax/PHP event
I am trying to use the removeEvent method in my calendar and send data in ajax to delete the event from my database. eventClick: function (calEvent, jsEvent, view) { $.ajax({ url:…
-
2
votes1
answer1390
viewsQ: How to remove events from Fullcalendar?
I’m wearing this: eventClick: function (calEvent, jsEvent, view) { $('#calendar').fullCalendar('removeEvents', event.id); }, My database has: id, title, start, end, username that I tried to change…
-
1
votes1
answer209
viewsQ: Fullcalendar- Show textbox when date is selected
What I currently have is a prompt where we enter the name of the event when the date is selected: select: function (start, end, allDay) { /* after selection user will be promted for enter title for…
-
11
votes4
answers781
viewsQ: HTML/PHP Detect if form value has been changed
I have a form where I can change things like username, password, morada, etc. On the site I also use a session (login) for each user, which is defined by username. The problem is that by changing…
-
1
votes1
answer91
viewsQ: Choose database table for logged in user
I intend to choose only 1 table of a database, depending on the user who is logged in to the website. I want this because I’m making an account management page for website users. On this page I have…
-
0
votes1
answer34701
viewsQ: How to align fields of a form
Good, I am developing a webpage with a form. How can I align the text boxes to fill? I tried to put everything inside a div with the container class, I tried to set the size to approximate sizes,…