Showing posts with label curl in php. Show all posts
Showing posts with label curl in php. Show all posts

Monday, April 14, 2025

cURL in php

 



<?php


$web = curl_init();

curl_setopt($web,CURLOPT_URL,"Your URL");

curl_exec($web);

curl_close($web);


?>

Variable , Assign multiple variable in python with short program

  See video -  Go to video Code : # variable x = 7 y = 5 z = 9 print ( x + y + z ) #assign multiple variable x , y , z = "hello...