Ben php diziler tek tırnak ile sorunlar olabilir fark:
<?php
$lang = array(
'tagline' => 'Let's start your project',
"h1" => "About Me"
);
?>
Yani çift tırnak olarak değiştirdim:
<?php
$lang = array(
"tagline" => "Let's start your project",
"h1" => "About Me"
);
?>
Should I use "php quote escapes", instead of what I just did? (by the way how to write "php quote escapes"?)