Hi! I am making a project in php .Since i am new to this language ,i am having difficulties .I am making a login page in which i have form for already registered users and a button for new users to register(Register).I am having difficulty on how to go to a particular php page on clicking on button (Register).Do i have to use AJAX for it ? If YES then how to do it?
Register should be button type or image type not a submit button. example <input type = "button" value = "Register" name="reg_button" onclick = "window.location='register.php'">
Or Use anchor tag to redirect
Thanks it worked.As i am doing my project do i need to use AJAX in it?