<?php // You can also use comments to leave out parts of a code line $x = 5 /* + 15 */ + 5; echo $x; ?>
# this is single-line comment
// tshi is another single-line comment
/* this is for multiple-lines comment block */
Pro tip: use ```triple backticks around text``` to write in code fences