Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Right triangle start pattern of star

<?php
for($i=0;$i<=6;$i++){
for($k=6;$k>=$i;$k--){
}
for($j=1;$j<=$i;$j++){
echo "*&nbsp;";
}
echo "<br>";
}
for($i=5;$i>=1;$i--){
for($k=6;$k>=$i;$k--){
}
for($j=1;$j<=$i;$j++){
echo "*&nbsp;";
}
echo "<br>";
}
?>
Comment

PREVIOUS NEXT
Code Example
Php :: How to return custom error message from controller method validation 
Php :: laravel join with count 
Php :: header file same but page title are different in php 
Php :: command ui is not found 
Php :: print average result in php 
Php :: typo3 add backend skin 
Php :: add object to http request php behamin proxy bproxy 
Php :: CakeResque::enqueue 
Php :: Comment créer automatiquement une méta description à partir de votre contenu dans WordPress 
Php :: Yii2 GridView Filtering on Relational Column 
Php :: wordpress have same sku 
Php :: php Least prime factor of numbers till n 
Php :: laravel compile blade 
Php :: wp_handle_upload return uploaded file name 
Php :: laravel save or post 
Php :: laravel list get x amount in a collection 
Php :: escape class wordpress 
Php :: Inject interface and not concrete class 
Php :: separate powershell commands on one line 
Php :: trait class has consttoctor 
Php :: wordpress disable php update required 
Php :: php getUserStateFromRequest 
Php :: magento 2 create group programmatically 
Php :: foreach loog in php 
Php :: php The function is a conversion from a key to a value 
Php :: wprest api remove content from response 
Php :: yii2 multilple andFilterWhere 
Php :: one to one relationship laravel 
Php :: php loop add class to first element 
Php :: current tab active on page reload in php 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =