Hello,
Still learning PHP and came across these examples:
[php]echo "<a href=“index.php?content=register”>Try again
;
echo "<a href=“index.php”>Return to Home;[/php]
AND
[php]echo "<input name=“goButton” type=“submit” value=“browse” />;
echo "<input name=“content” type=“hidden” value=“edit” />;[/php]
My question is: What purpose or function do all the back slashes serve?
Can’t it be just :
[php]echo "<input name=“goButton” type=“submit” value=“browse”[/php]
–without all the backslashes?
Thanks in advance.
-Chris