✏️ 正在编辑: my_distributer.php
路径:
/home/llpreacharge/public_html/user/my_distributer.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<html> <head> </head> <body> <?php include'connection.php'; $uid=$_GET['disId']; $quGetUserProfile="select * from distributer where Userid='$uid'"; $reGetUserProfile=mysqli_query($con,$quGetUserProfile); $dataGetUserprofile=mysqli_fetch_array($reGetUserProfile); $UsrName=$dataGetUserprofile['Name']; $UsrMobile1=$dataGetUserprofile['Mobile1']; $UsrMobile2=$dataGetUserprofile['Mobile2']; $UsrEmail=$dataGetUserprofile['Email']; $Address=$dataGetUserprofile['Address']; echo "<table border='1' cellpadding='10' id='tbl'> <tr> <th colspan='2' style='background:#808000;'>-: Distributer's Information :-</th> </tr> <tr> <th> Name</th> <td> $UsrName </td> </tr> <tr> <th>Mobile 1</th> <td> $UsrMobile1 </td> </tr> <tr> <th>Mobile 2</th> <td> $UsrMobile2 </td> </tr> <tr> <th>Email Id</th> <td> $UsrEmail </td> </tr> <tr> <th>Address</th> <td> $Address</td> </tr> </table>"?> </body> </html>
💾 保存文件
← 返回文件管理器