Skip to content

Tag: php

How to attach when enter a text in laravel?

After login a user, The user enters this skills form, selects the skills. A user can enter multiple skills, and save in database. The field of name skill_name level And in table skill_name level user_id I don’t know if the skills and skill_user table should be, or not, I don’t know. What would you…

Creating a Login-in-as from a seperate server

The Background I have a Laravel system with a standard login system, hashes, username etc.. I also have multiple servers. My own server as the Web developer, and client servers that host client sites. Some clients have multiple sites. Thr problem I have a scenario where I would like to have the Main website (…

How to clear an HTML Form, even the form’s initial values?

I have an HTML form that sends information via post to a PHP file. On the user’s second visit the page should remember the last search input. So if on their first visit they were looking for pencil then on their second visit, the form would already have prefilled the Product Name input with pencil. I&#8…

How can I call a Javascript variable on PHP(HTML)

So what I’m trying to do is something like this: I want to name the new dynamic textbox. So I could call it later on another PHP page. Answer You have to send the javascript value through ajax POST to the server and read the post via php. Not so sure what your aim is but let me know if