What is the best practice for opening a new PHP page from a Spry tab in HTML?

To open a new PHP page from a Spry tab in HTML, you can use JavaScript to redirect the user to the desired PHP page when a tab is clicked. This can be achieved by adding an onclick event to the tab element that calls a JavaScript function to redirect to the PHP page. ```html <!DOCTYPE html> <html> <head> <title>Open PHP Page from Spry Tab</title> <script> function openPhpPage() { window.location.href = 'newpage.php'; } </script> </head> <body> <ul class="TabbedPanelsTabGroup"> <li onclick="openPhpPage()">Tab 1</li> <li>Tab 2</li> <li>Tab 3</li> </ul> </body> </html> ```