Hey i have to make a pizza website for my assignment. I am done the HTML part and have finished the PHP more than half. I am trying to decorate it a bit and trying to use "\t" for tab, but its not working. Any suggestions?
P.S. I have made a separate PHP file.
echo "\t"."Confirmation Page<br/>";
$cost;
$counter=0;
echo "Personal data:<br/>";
isset($_POST["name"]) ? $name = $_POST["name"] : $name = "";
isset($_POST["phoneNumber"]) ? $phone = $_POST["phoneNumber"] : $phone = "";
echo $name."<br/>";
echo $phone."<br/><br/>";
I am having problems with "\t" in the first line.
Thanks :)