I am quite certain this is an easy thing for someone to answer but since I am still pretty new to webpage design I figured I would ask it anyway. All I am trying to do is create a button to which when clicked will load another page (either .html or .php). I am doing all of this within an existing PHP page so of course it needs to be echoed.
Currently what I have tried is this:
echo '<input type="button" onclick="save_playlist.php" value="Save Playlist">';
Am I missing something very simple? I am not passing any data, simply trying to load the save_playlist.php.
Thanks in advance.