How to Add X Twitter Share Button in PHP Website?
Hi Artisan,
This extensive guide will teach you php twitter share post button. you will learn x twitter share button php. It's a simple example of custom x twitter share button php. we will help you to give an example of create custom twitter share button php.
In this post, I will show you how to make a x twitter share button in php code. we will create a simple "index.php" file and add a twitter share button. When the user clicks on that button then it opens a twitter 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 twitter 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 Twitter(X) 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";
?>
<a href="javascript:window.open('https://twitter.com/intent/tweet?url=<?php echo $url ?>', '_blank', 'width=400,height=500');void(0);" class="btn btn-info" >Share on X</a>
</body>
</html>
Output:
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Add Linkedin Share Button in PHP Website?
- How to Add Facebook Share Button in PHP Website?
- PHP Format Number with 2 Decimals Example
- How to Get Time Difference in Hours and Minutes in PHP?
- How to Check Array Empty or Not in PHP?
- How to Get First Element of Array in PHP?
- How to Get First and Last Character from String in PHP?
- How to Install PHP GD Extension in Ubuntu?
- Laravel - php artisan serve not working - Solution
- How to Check If Date is Future Date in PHP?
- PHP Add Hours to Datetime Example
- PHP Explode Every Character into Array Example
- How to Partially Hide Email Address in PHP?