Skip to content

Tag: html

How to run 2 or more input files in the same form with PHP

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

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

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…