wdsacademy
Pages
Home
Learn Web Development & Training
Youtube Video
Showing posts with label
php library
.
Show all posts
Showing posts with label
php library
.
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
);
?
>
Older Posts
Home
Subscribe to:
Posts (Atom)
How to Add AI to Your Website
index.php file <form method = "POST" action = "chat.php" > <input type = "text" name = "...
Password Remember using php
Video Link - Go to video Full code - <?php if ( $_SERVER [ 'REQUEST_METHOD' ]== "POST" ) { $email = $_POS...
CSS Triangles
<!doctype html > <html lang = "en" > <head> <meta charset = "utf-8" /> <meta name ...
Custom Popup using HTML + CSS + Javascript
Video Link - Go to video Full Code - <style> .popup-overlay { display : none ; position : fixed ; top ...