I would like to know how to run 2 or more input files in the same form, I have to upload some documents by using php, I made separate forms and they work, but I need to all together however I dont know how. I need to put only two forms as example actually I need to put 3 but
Tag: html
How to get all tags from WordPress page/post as a list in shortcode?
At the end of each page and every post, I would like to output the tags as a list in a shortcode. Unfortunately, I do not know much about PHP, but someone who can understand will definitely be able to correct my mistake using the code below. Thank you in advance! Answer The method needs to return a string to
How can I redirect to the same page with $_GET parameters in URL
i’ve got a question about redirecting. I put some parameters in my URL so I can use $_GET to get them out en them put them in a variable. Now, when I fill in my form wrong i get redirected but all the parameters are missing and they don’t are in the variables anymore. Is there a way you can
How to use mPDF for Chinese Language
I am using mPDF to save form input data to PDF. For English, it is working fine. Anyone can use this code to save HTML Form data to PDF. Issue: In order to fulfill my project requirement I need to …
Page not loading at the top
I have a single page website. When I visit the domain of the site, it starts me off half way down the page. I’m not sure what’s causing this. Has anyone experienced this before? I can provide the link to the site if necessary. My index.php page…. Answer Your page scrolls down because it cent…
Changes to page are not saved (on page reload)
When im logged in i can see the “Remove Stone” button and when i click it, it goes away but when i reload the page it comes back. Any help? Thanks a bunch!Im also loading this into the html page with a seperate php file using this: Also if anyone has a better solution on what to do, im all
How to set Froala editor default text?
I write that in my code: I want it to be this way: but I see this instead: How can I change it?
set the input type = date min from another input type = date
Hi i’m a rookie in html and been struggling in this inputs, i just want to know how to set the second input minimum date from the first input selected value? i’ve already searched and i just can’t get the right answer… Answer PHP is server-side script that only runs on the server (not …
Freeze first row and first column of table
I am trying to freeze/lock the first row and the first column of a table. I have tried giving thead position: absolute; or position: fixed; but it looks strange. I have followed some answers but I am still confused how to make it. My HTML / CSS Code : Answer Freeze First Row Freezing the first row can be done
How to make a delete request with Laravel
I am not using resource controller. The route: The controller function: The call: The program returns a MethodNotAllowedHttpException. Thank you. Answer You may try this (Notice the hidden _method input): Check Form Method Spoofing. Update: In the latest versions of Laravel, it’s possible to use blade d…