Skip to content

Tag: forms

Trying to get array from form post but not working correcty

I am building an application with php I have a form which contains an array of checkboxes as shown in the picture below I want to the values accordingly but it is not working as expected The form was generated with php for loop HTML I am trying to get the selected values but not working as expected. leaked_no…

PHP submitting a form is destroying my sessions

Hello I am trying to make a form in the page where I created a session so when I submit the form the sessions gets destroyed here is my code: PHP code to start the session : Answer Make sure you have session_start(); at the top of all the PHP scripts So, put the session_start(); at the top of the

WordPress page title fxn in echo p

This is probably super simple but I just cant seem to figure it out. How can I pass the current WordPress page title into this code? Below is a snippet from Formidable Forms WP plug-in which basically prints statistics from forms within my website. In this case, the # of entries for a specific form (55jqi) an…

Form doesn’t take me to action url when submitting

When I submit my form it doesn’t take me to the right url, it instead just stays on the same url and adds the params to it. Like this: /todo?message=themessage rather than what it should be as /todo/add In my /todo/add url, I have a php script that is assigned to that route, which just echos a string an…