Browsing Category
PHP
Run Stripe Webhooks URL from localhost
Stripe is a payment gateway that is becoming increasingly popular in the Web industry. It offers payment processing services, which can be easily integrated into your Web application using the Stripe API.
As in any other payment gateway…
PHP program to print Diamond Pattern
In this article write a PHP program to print Diamond Pattern using asterisk (*) symbol. We run for loop 8 times, in which you have two outer for loops which contains two nested for loops to print Pyramid Pattern and Reverse Pyramid Pattern…
PHP program to print Diamond Triangle number
In this article write a PHP program to print Diamond Triangle number. We run for loop 8 times, in which you 1 for loops which contains two nested for loops to print Diamond Triangle number as shown in the following program.
Program to…
PHP program to print Floyd Triangle number
In this article write a PHP program to print Floyd triangle number. We run for loop 8 times, in which you have 1 outer for loops which contains 1 nested for loop and if condition to print Floyd triangle number as shown in the following…
PHP Program to print Triangle number
In this article write a PHP program to print triangle number. We run for loop 10 times, in which you have 1 outer for loops which contains 1 nested for loop and if condition to print triangle number as shown in the following program.…
PHP program to print Triangle number in reverse pattern
1. Program to print Triangle number in reverse pattern
<?php
for($i=6;$i>=1;$i--)
{
for($j=$i;$j>=1;$j--)
{
echo $j." ";
if($j==1)
{
echo " ";
echo "<br…