執行 ❯
獲取您
自己的 PHP
伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php // Make the URL rewriter affect <a href> and <form> tags ini_set('url_rewriter.tags','a=href,form='); // Add a variable output_add_rewrite_var('var', 'value'); // Output a link and a form echo '<a href="">This link\'s URL will have a variable</a>'; echo '<form>'; echo '<p>This form will have a hidden input</p>'; echo '<input type="text" name="hello">'; echo '</form>'; ?> </body> </html>
這個連結的網址會有一個變數
這個表單會有一個隱藏的輸入框