<tutorialjinni.com/>

cURL POST Request

Posted Under: PHP on Feb 18, 2022
cURL POST Request
There are many HTTP methods available to clients to access data and resources from server. Most used HTTP methods are GET and POST. GET request are simple and request is part for URL. It supports up to 4 KB of data sent as part of URL to the server.

cURL SSL bypass

Posted Under: PHP on Feb 18, 2022
cURL SSL bypass
cURL or Client URL is a great tool to acess different protocols programmatically or simply on command line. Over 90% of the websites on the internet are using SSL to protect themselves form unauthorized interception.

Get Full URL in PHP

Posted Under: PHP on Nov 20, 2020
Get Full URL in PHP
PHP code snippet to get the complete URL typed in the browser. It will get complete URL with query string.

PHP Get File Information

Posted Under: PHP on Feb 27, 2020
PHP Get File Information
PHP Code snippet to get Information about a file such as File Name, File Extension, File Size, File MIME Type, File Complete Path.

Print SQL Query in Laravel

Posted Under: PHP on Feb 26, 2020
Print SQL Query in Laravel
Code Snippet to print raw SQL queries.