Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 399 Bytes

File metadata and controls

36 lines (26 loc) · 399 Bytes
description string
keywords php
title string
toc_max 4

string

  • single quote
$name = 'kamal'
echo 'kamal is here \n new line';
//  kamal is here \n new line
  • double quote
$name = "kamal"
echo "kamal is here \n new line";
//  kamal is here
//  new line

resources