Jump to content

spielmeister

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by spielmeister

  1. many thanks, man, you're awesome. it works great now.
  2. Yeah, how do you get that image that says the ip, os, etc?

  3. It doesn't. Does that mean its a browser problem or an os prob?
  4. Sorry to keep bothering you about his, but there is still no content! I press ctrl+U in firefox to view the source and it shows this: <html> <head> <title>Welcome to Lincoln's Site</title> </head> <body> <frameset cols="120,*"> <frame src="navframe.htm" /> <frame src="default.php" name="showframe" /> </frameset> </body> </html> should I just not use frameset?
  5. That doesn't work though. I enter the verification code and on "MySite.php" it says this: Parse error: syntax error, unexpected '<' in /home/lbpages/public_html/MySite.php on line 17 Here's the code for MySite.php: <html> <head> <title>Welcome to Lincoln's Site</title> </head> <body> <?php $code="random"; $code=$_POST["verifycode"]; if ($code!="****************") { echo "You are not a verified user. Go Away."; exit; } else { <frameset cols="120,*"> <frame src="navframe.htm" /> <frame src="default.php" name="showframe" /> </frameset> } ?> </body> </html>
  6. Do you have to have the <body> and <head> tags though?
  7. Hi everybody, I've just been trying to figure out how to get users to comment on a webpage - as in, say facebook or something where they can type something in a form and it shows up on the website for the rest of eternity (or until I decide I hate it). Kind of like making a forum, I guess. I would preferrably use php, but asp.net would work too. I'm okay with pretty much any language heliohost.org supports. Does the post function for php work in this case?
  8. Well, when unwanted users went to the page entering the wrong password, then it would say that over and over and over until they had to exit the page and they wouldn't be able to view the content. But I guess the exit function takes care of that. Is it possible to have html tags in the php tags?
  9. Hi Everybody, I'm working on my website. I just barely uploaded the files, did it today, actually. I'm using Windows Vista, Mozilla Firefox. Anyway, I'm writing a website called "MySite.php". it requires an activation code at a different site to be entered in. I type the code, and it leads me to my main site. I know that I've typed the correct code, and everything. only I have a little problem - after MySite.php executes the php code, it won't do the html I want it to. Here is the code for it: <html> <head> <title>Welcome to My Site</title> </head> <body> <?php <?php $code="random"; $code=$_POST["verifycode"]; if ($code!="*************") { echo "You are not a verified user. Go Away."; $blah=5; while ($blah=5) { echo "You are not a verified user. Go Away."; } } else { echo "You are a verified user."; } ?> ?> <frameset cols="120,*"> <frame src="navframe.htm" /> <frame src="default.php" name="showframe" /> </frameset> </body> </html> Do I just need to put the php after the frameset content I want? Or is it an OS problem?
×
×
  • Create New...