sql - How to connect several html/php files to form a complete website? -
i've made different html files work php on wamp server, , want know how put them together?
for example, have login page. i'd user able login , see next html file main page or something.
i found header function in php , i'd know if it's formal way of redirecting user page page.
you can use html links;
<a href="nextpage.html">next page</a>
you can use header in php files;
header("location:nextpage.php");
Comments
Post a Comment