Here is the code:
<body>
<?php
session_start() ;
$connection=mys ql_connect("mys ql506.opentrans fer.com","C2609 87_??????","??? ???");
$db=mysql_selec t_db("C260987_l oginsv2",$conne ction);
$users_table = 'members_md5';
$username = $_POST['myusername'];
$result3 = mysql_query("SE LECT `nickname` from `C260987_logins v2`.`members_md 5` WHERE `members_md5`.` username` = '$myusername'") ;
$row3 = mysql_fetch_arr ay($result3);
print_r ($row3);
print "\n<ul>\n";
while ( $row3 = mysql_fetch_arr ay($result3) ) {
print "<li>" . $row3["nickname"] . "</li>\n";}
print "</ul>\n";
$result4 = mysql_query("SE LECT `lastlogin` from `C260987_logins v2`.`members_md 5` WHERE `members_md5`.` username` = '$myusername'") ;
$row4 = mysql_fetch_arr ay($result4);
print_r ($row4);
print "\n<ul>\n";
//while ( $row4 = mysql_fetch_arr ay($result4) ) {
//print "<li>" . $row4["lastlogin"] . "</li>\n";}
//print "</ul>\n";
exit();
I want it returned as a sentence without duplication and without any array or field tags. Can you help?
<body>
<?php
session_start() ;
$connection=mys ql_connect("mys ql506.opentrans fer.com","C2609 87_??????","??? ???");
$db=mysql_selec t_db("C260987_l oginsv2",$conne ction);
$users_table = 'members_md5';
$username = $_POST['myusername'];
$result3 = mysql_query("SE LECT `nickname` from `C260987_logins v2`.`members_md 5` WHERE `members_md5`.` username` = '$myusername'") ;
$row3 = mysql_fetch_arr ay($result3);
print_r ($row3);
print "\n<ul>\n";
while ( $row3 = mysql_fetch_arr ay($result3) ) {
print "<li>" . $row3["nickname"] . "</li>\n";}
print "</ul>\n";
$result4 = mysql_query("SE LECT `lastlogin` from `C260987_logins v2`.`members_md 5` WHERE `members_md5`.` username` = '$myusername'") ;
$row4 = mysql_fetch_arr ay($result4);
print_r ($row4);
print "\n<ul>\n";
//while ( $row4 = mysql_fetch_arr ay($result4) ) {
//print "<li>" . $row4["lastlogin"] . "</li>\n";}
//print "</ul>\n";
exit();
I want it returned as a sentence without duplication and without any array or field tags. Can you help?
Comment