ItSolutionStuff.com

How to Add Pinterest Share Button in PHP Website?

By Hardik Savani May 14, 2024
PHP

Hello Friends,

This extensive guide will teach you php pinterest share post button. If you have a question about pinterest share button php then I will give a simple example with a solution. If you have a question about custom pinterest share button php then I will give a simple example with a solution. If you have a question about create custom pinterest share button php then I will give a simple example with a solution. Here, Create a basic example of how to make pinterest share button in php website.

In this post, I will show you how to make a pinterest share button in php code. we will create a simple "index.php" file and add a pinterest share button. When the user clicks on that button then it opens a pinterest page and shares your given URL. so, let's see the simple example with output:

index.php

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>How to Add pinterest Share Button in PHP - ItSolutionStuff.Com</title>

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">

</head>

<body>

<div class="container">

<h2>How to Add Pinterest Share Button in PHP - ItSolutionStuff.Com</h2>

<?php

$url = "https://www.itsolutionstuff.com/post/whats-new-in-laravel-11-new-features-and-latest-updatesexample.html";

$image = "https://www.itsolutionstuff.com/upload/itsolutionstuff.png";

$title = "This is demo";

?>

<a href="javascript:window.open('http://pinterest.com/pin/create/link/?url=

<?php echo $url ?>&media=<?php echo $image ?>&description=<?php echo $title ?>', '_blank', 'width=400,height=500');void(0);" class="btn btn-danger">Share on Pinterest</a>

</div>

</body>

</html>

Output:

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Add Facebook Share Button in PHP Website?

Read Now →

PHP Format Number with 2 Decimals Example

Read Now →

How to Get Time Difference in Hours and Minutes in PHP?

Read Now →

How to Convert Array to JSON in PHP?

Read Now →

PHP MySQL Column Sorting Example Tutorial

Read Now →

PHP MongoDB CRUD Operation Example

Read Now →

PHP MySQL Login with Google Account Example

Read Now →

PHP Ajax Multiple Image Upload with Preview Example

Read Now →

PHP - Dynamically Add Remove input fields using JQuery Ajax Example with Demo

Read Now →

How to Upload and Resize Image in PHP?

Read Now →

PHP MySQL DataTables Server-side Processing Example

Read Now →

PHP MySQL Integrate Fullcalendar Example Tutorial

Read Now →

PHP MySQL Highcharts Chart Example

Read Now →