jeg kunne ikke få det til at virke.. eller rettere sagt det kunne jeg men problemet kommer så når jeg vil have det vist på den "rigtige" side..
dette er min bund og jeg skriver // HER // der hvor jeg gerne ville have haft det billede med profil navnet ind
</td>
<td id="space" width="5px"> </td>
<td id="sec_menu" valign="top" align="center" width="145px">
<h2>Community</h2>
<?php if ($_SESSION[login] =="true") {
$get = mysql_query("SELECT * FROM user_system WHERE username = '$_SESSION[username]'") or die(mysql_error());
$row = mysql_fetch_array($get);
echo $row[username];
?>
//HER//
<img src="<?php echo $row[profile_pic]; ?>" alt="<?php echo $row[username]; ?>" border="1" width="100px" height="100px" />
<a href="">Inbox <b>(4)</b></a>
<a href="">Profile</a>
<a href="">Userlist</a>
<a href="">Options</a>
<a href="">Your stuff</a>
<a href="logud.php">Sign out</a>
<?php }else{ ?>
<form action="includes/godkend.php" method="POST">
<input type="text" size="20" name="username" value="Username" onFocus="if (this.value=='Username') {this.value=''}" onBlur="if (this.value=='') {this.value='Username'}" />
<input type="password" size="20" name="password" value="Password" onFocus="if (this.value=='Password') {this.value=''}" onBlur="if (this.value=='') {this.value='Password'}" />
<input type="submit" name="submit" value="Go">
<input type="reset" name="reset" value="X">
</form>
<a href="">Create account</a>
<a href="">Forgot password</a>
<?php } ?>
<h2>Advertisement</h2>
Want your banner<a href=""> here?</a>
</td>
</tr>
<tr>
<td colspan="7" height="5px"> </td>
</tr>
<tr>
<td id="footer" colspan="7" align="center" valign="bottom">Copyright © 2007-2008 Serverin.dk. Version 1.0 All Rights Reserved. <br>Optimized For Firefox 1280 x 1024</td>
</tr>
</table>
</center>
</body>
</html>
og koden med billedet er her (teksten bliver ikke udskrevet, ved ikke lige hvorfor)
<?php include("includes/dbconnect.php");
header("Content-type: image/png");
$im = ImageCreateFromPng("1.png");
$text_color = imagecolorallocate($im, 000, 000, 000);
$black = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 2, 7, 18, "User serverin");
imagepng($im);
imagedestroy($im);
?>
Indlæg senest redigeret d. 12.09.2008 11:16 af Bruger #14093