📄 services.inc
字号:
<?php$query = $sql->query("SELECT * FROM packages WHERE pkg_type <> 1") or die(mysql_error());if(mysql_num_rows($query) > 0){ ?> <form method="post" action="<?=$_SERVER['PHP_SELF']?>?page=upgrade"> <fieldset> <legend>Package Selection</legend> <table> <?php while($data = mysql_fetch_assoc($query)) { ?> <tr> <td><input type="radio" name="package" id="<?=$data['id']?>" value="<?=$data['id']?>" /></td> <td><strong><label for="<?=$data['id']?>"><?=$data['pkg_name']?></label></strong></td> </tr> <?php } ?> <tr> <input type="hidden" name="step" value="1" /> <td colspan="2"><input type="submit" value="next" /></td> </tr> <tr> </table> </fieldset> </form> <?php}else{ echo "<p>No services were found, please contact the sales department!</p>";}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -