Skip to content
Advertisement

Tag: post

Why doesn’t this get function receive the variable car?

*quick_searches.php This code items that similar to a search done on a previous page. Then is supposed to save the specific brand listed to car. test.php This section of code is supposed to get car = ‘.$row[‘brand’].’ from quick_searches.php and display it. Answer So your URL has spaces around the parameter values – these have been URL Encoded to %20.

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

Laravel ajax passing data to php

I have a special problem. I am making an Ajax request to get data from the db without updating. The response I get should be outputted in a advanced way like this: Right now I get the correct response from the Ajax request. But how do I output it like that, with the include also and it should appear many

2ba web API post request with php curl

Im using 2ba its API to receive product information which I later on want to store inside my database. I am trying to create a post request for receiving the data I need. This is the request I want to get to working. And this is my code: postApiData.php index.php My API key does for sure work since I have

Laravel store Files from API with specific folder creation

My goal is create Laravel API to store Files, from VSTO POST request. But first need figure out how create unigue folders in laravel where to file store. From VSTO sending POST with File and parameter id_message. How to set Laravel Controller to store file as storage/app/MyFiles/{id_message}/file, and parametr id_message wile file_path save to database table ? FileController Update for

Advertisement