---
title: "hjälp"
type: "forum-thread"
url: "https://www.webforum.nu/amne/php/43079-hjälp"
topic: "PHP"
topic_url: "https://www.webforum.nu/amne/php"
author: "fearphage"
published: "2002-05-04T19:57:59.000Z"
updated: "2002-05-04T20:48:21.000Z"
replies: 2
views: 119
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/php/43079-hjälp"
---

# hjälp

## #1 — fearphage, 2002-05-04T19:57Z

\<?
$username = '';
$top="
\<html\>\<body bgcolor=white text=black\>
\<table border=0 cellpadding=1 cellspacing=0 width=100% hegiht=100%\>
\<tr\>
\<td colspan=2\>\<center\>
if ($username == \\"\\") { 
  echo(\\"you're not logged in\\");
} else {
echo(\\"you're logged in as $username\\"); 
}
\</center\>\</td\>
\</tr\>
\<tr\>
\<td height=100% width=200 align=top\>
\<table border=0 width=100% height=100%\>
\<tr\>\<td width=100% height=30\>\<a href=index.php\>Login\</a\>\</td\>\</tr\>
\<tr\>\<td width=100% height=30\>\<a href=create.php?create=\>Create Account\</a\>\</td\>\</tr\>
\<tr\>\<td width=100% height=30\>\<a href=lostpassword.php?check=\>Retrieve Lost Password\</a\>\</td\>\</tr\>
\<tr\>\<td height=\* width=100%\>
\</table\>
\</td\>\<td\>

";

$bottom="\</td\>\</tr\>\</table\>\</body\>\</html\>

";
?\>
vad är fel?

Permalänk: https://www.webforum.nu/p/43079

## #2 — fearphage, 2002-05-04T20:01Z

det blir bara helt vitt... <http://213.66.135.110/testor/config.php>

Permalänk: https://www.webforum.nu/p/665819

## #3 — ThACRoW, 2002-05-04T20:48Z

Välkommen till webForum! :bire 

Du kan inte ha PHP kod inne i en sträng. Utan du få lösa det så här:

```
<? 
$username = ''; 
$top=" 
<html><body bgcolor=white text=black> 
<table border=0 cellpadding=1 cellspacing=0 width=100% height=100%> 
<tr> 
<td colspan=2><center>" . ( $username == '' ? 'you\\'re not logged in' : 'you\\'re logged in as ' . $username ) . "</center></td> 
</tr> 
<tr> 
<td height=100% width=200 align=top> 
<table border=0 width=100% height=100%> 
<tr><td width=100% height=30><a href=index.php>Login</a></td></tr> 
<tr><td width=100% height=30><a href=create.php?create=>Create Account</a></td></tr> 
<tr><td width=100% height=30><a href=lostpassword.php?check=>Retrieve Lost Password</a></td></tr> 
<tr><td height=* width=100%> 
</table> 
</td><td> 

"; 

$bottom="</td></tr></table></body></html> 

"; 
?>
```

Permalänk: https://www.webforum.nu/p/665828

---

Tråden på webben: https://www.webforum.nu/amne/php/43079-hjälp
