ben: When to use " '?

Beitrag lesen

I read a tutorial and sometimes the author is using ' - sometimes ".

What is the difference?

Example:

if(isset($_GET['section']) AND ("admin" == $_GET['section'])) {
session_start(); }

if(isset($_GET['section']) AND ('admin' == $_GET['section'])) {
session_start(); }