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 functions with parameters
Created February 4, 2023 19:45
PHP Fundamental - PHP Functions with Parameters
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / #Faststone serial key
Last active February 4, 2023 08:02
#FastStone Capture Full Serial Key
9.3 version: Registration Code
Name : www.xyraclius.com
Serial : OOCRYIMDMDPWRETFPSUZ
9.8 version: Registration Code
Name: Free Software
Serial: BXRQE-RMMXB-QRFSZ-CVVOX
@polyhossain
polyhossain / php functions 2
Created January 30, 2023 20:37
PHP Fundamental - PHP Functions (2)
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php functions
Last active January 30, 2023 20:16
PHP Fundamental - PHP Functions (1)
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php multidimensional associative array foreach loop with list function
Created January 29, 2023 21:19
PHP Fundamental - PHP Array Foreach Loop with List Function (Multidimensional Associative Array)
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php array foreach loop with list function
Created January 29, 2023 20:50
PHP Fundamental - PHP Array Foreach Loop with List Function (indexed array)
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php array nested foreach loop
Last active January 29, 2023 21:04
PHP Fundamental - PHP Array Nested Foreach Loop (indexed, associative, multidimensional array)
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php nested for loop
Last active January 23, 2023 16:58
PHP Fundamental - PHP Nested For Loop
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php foreach loop
Created January 22, 2023 20:21
PHP Fundamental - PHP Foreach Loop
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>
@polyhossain
polyhossain / php for loop
Last active January 22, 2023 22:03
PHP Fundamental - PHP For Loop
<?php
$text="I'm learning PHP.";
$fonts="Poppins";
$bgcolor="#ff0000";
$fontcolor="#ffffff";
$wrapwidth="980px";
?>
<!doctype html>
<html>