php functions
Posted in
2
3:11 am, October 24, 2021
php post data back to a url with a function
this function uses curl to post back data to a url, this acts like a _POST form request from within a function.
Function usage:
$url
the url to post the data back to
e.g: $url = "https://kruxor.com/";
$myvars
the variables and data to post back to the url, you can add them in a string like the following example
$myvars = 'myvar1=' . $myvar1 . '&myvar2=' . $myvar2;
Usage
echo $response = post_data($url, $myvars);
PHP
public function post_data($url, $myvars) {
//$url = 'http://www.someurl.com';
//$myvars = 'myvar1=' . $myvar1 . '&myvar2=' . $myvar2;
$ch = curl_init( $url );
curl_setopt( $ch, CURLOPT_POST, 1);
curl_setopt( $ch, CURLOPT_POSTFIELDS, $myvars);
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt( $ch, CURLOPT_HEADER, 0);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
return $response = curl_exec( $ch );
}
View Statistics
This Week
19
This Month
166
This Year
0
Add Comment
Other Items in php functions
make a nice readable date using a timestamp string function make_nice_date
get php to validate its self with php check syntax
Spam IP Database and delete button
youtube search api request function
list all array json function list_all_array_json
php get file extension from a file name
php post data back to a url with a function
generate random username function in php
Related Search Terms
Other Categories in Code
c testing apache apps asp bat bootstrap bootstrap templates core css css grid design elements fancybox fonts foundation framework gimp git html icons ideas images javascript jquery js linux mac nginx node php php functions php simple html dom pi400 python react sections site bugs site documentation sql sqlite sublime svg templates tools virtual box webdev windows wordpress