Hi,
möchte gerne ein Feld füllen mittels $cookie - Funktion. Leider wird dieses Feld aber nicht gefüllt...
$pcname ist doch eine Variable, nur wo wird diese gesetzt?
Hier der Code
Jemand eine Idee?
Gruß
möchte gerne ein Feld füllen mittels $cookie - Funktion. Leider wird dieses Feld aber nicht gefüllt...
$pcname ist doch eine Variable, nur wo wird diese gesetzt?
Hier der Code
PHP-Code:
function createUserInfo()
{
global $pubpriv, $mysql_users_table, $db, $cookie_name, $lang_username, $lang_email, $lang_office, $lang_phoneext, $lang_pcname, $lang_userinfo;
if($pubpriv == 'Private'){
$sql = "SELECT * from $mysql_users_table where user_name='$cookie_name'";
$result = $db->query($sql);
$row = $db->fetch_array($result);
$cookie_phone = $row[phone];
$cookie_email = $row[email];
$cookie_user_name = $row[user_name];
$cookie_office = $row[office];
$cookie_pcname = $row[pcname];
}
else{
global $cookie_phone, $cookie_email, $cookie_user_name, $cookie_office, $cookie_pcname;
}
startTable("$lang_userinfo", "left", 100, 4);
if($pubpriv == "Private"){
echo "<tr>
<td width=27% class=back2 align=right>$lang_username:</td>
<td class=back width=20%>$cookie_user_name
<input type=hidden name=username value=\"$cookie_user_name\">
</td>";
}
else{
echo "<tr>
<td width=27% class=back2 align=right>$lang_username:</td>
<td class=back width=20%>
<input type=text size=16 name=username value=\"$cookie_user_name\">
</td>";
}
echo "
<td class=back2 align=right width=100> $lang_email: </td>
<td class=back align=left>
<input type=text name=email value=\"$cookie_email\">
</td>
<td width=27% class=back2 align=right>$lang_office:</td>
<td class=back>
<input type=text size=16 name=office value=\"$cookie_office\">
</td>
</tr>
<td class=back2 align=right width=100>$lang_phoneext:</td>
<td class=back>
<input type=text name=phone value=\"$cookie_phone\">
</td>
<td width=27% class=back2 align=right>$lang_pcname:</td>
<td class=back>
<input type=text size=16 name=pcname value=\"$cookie_pcname\">
</td>";
endTable();
}
Gruß
Kommentar