我想做一些事情来显示网站上的最后门票
例如我有文件夹/ whmcs 我的网站是examble.com /
我想要来自whmcs的show tikets。我使用此代码获取名字并显示我的网站登录表单,但在用户信息中需要添加最后一个tikets或显示最后的tiket名称和票证链接。
怎么做??
<?php
include("../whmcs/dbconnect.php");
if ($_SESSION['uid']) {
$result = mysql_query("SELECT firstname FROM tblclients WHERE id='".$_SESSION['uid']."' LIMIT 1;");
while($row = mysql_fetch_array($result))
echo "<div class='after'><p id='login'><span>".$_LANG['welcomeback'].', '.$row['firstname'].' <br /><a href="../sup/clientarea.php">'.$_LANG['clientareatitle'].'</a> | <a href="../sup/submitticket.php">اضف تذكرة</a></span></p><div class="out"><a href="../sup/logout.php">خروج</a></div></div>';
}else{
echo '<div class="before">
<form action="../sup/dologin.php?goto=clientarea.php" method="post">';?>
<input type="hidden" name="token" value="" />
<input type="text" name="username" id="username" value="البريد الالكتروني" onblur="if (this.value=='')this.value='البريد الالكتروني'" onclick="value=''" />
<?php
echo '<input name="password" id="password" type="password" value="" />
<label><div class="rememberme">تذكرني</div>
<input type="checkbox" name="rememberme" />
<span class="state"></span>
</label>
<input type="submit" value="دخول" />
</form>
<a href="../sup/pwreset.php" class="lost" title="نسيت كلمة المرور؟">نسيت كلمة المرور؟</a>
<a href="../sup/register.php" title="التسجيل">التسجيل</a>
</div>';
}
?>