Skip to content

Instantly share code, notes, and snippets.

View polyhossain's full-sized avatar

Poly Hossain polyhossain

  • Dhaka, Bangladesh
View GitHub Profile
@polyhossain
polyhossain / php while loop, do while loop
Last active January 22, 2023 21:26
PHP Fundamental - PHP While Loop, Do While Loop
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php switch statements
Created January 21, 2023 19:24
PHP Fundamental - PHP Switch Statements
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php conditional statements
Created January 21, 2023 14:36
PHP Fundamental - PHP Conditional Statements (if, elseif, if elseif else)
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php array operators
Created January 15, 2023 17:48
PHP Fundamental - PHP Array Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php string operators
Created January 15, 2023 08:42
PHP Fundamental -PHP String Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / PHP logical operators
Created January 14, 2023 20:45
PHP Fundamental - PHP Logical Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php increment, decrement operators
Created January 14, 2023 18:36
PHP Fundamental - PHP Increment/Decrement Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php comparison operators
Created January 14, 2023 17:47
PHP Fundamental - Comparison Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php operators-assignment operators
Created January 14, 2023 13:15
PHP Fundamental - PHP Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php operators-arithmetic operators
Created January 14, 2023 12:57
PHP Fundamentals - PHP Operators
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>