I just converted some of my HTML
pages to PHP
pages, and I\'m not that familiar with PHP
. In my HTML
pages, assuming it\'
Just try like this:
HTML in PHP :
$link_address1 = 'index.php';
echo "Index Page";
$link_address2 = 'page2.php';
echo "Page 2";
Easiest way
$link_address1 = 'index.php';
echo "Index Page";
$link_address2 = 'page2.php';
echo "Page 2";