Help!

This is a discussion on "Help!" within the PHP Forum section. This forum, and the thread "Help! are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 8th, 2007, 05:32
Junior Member
Join Date: Apr 2007
Location: Kansas
Age: 18
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to BRONIC
Exclamation Help!

I get an error:

Parse error: syntax error, unexpected '<' in /www/110mb.com/b/r/o/n/i/c/_/_/bronic/htdocs/Home.php on line 10


1 <?php
2 session_start();
3 header("Cache-control: private");
4 if ($_POST['username'] == $fuser && $_POST['password'] == $fpass){
5 echo "You are logged in.<br />";
6 echo "To view you profile <a href=\"Profile.php\">here</a>";
7 echo " <br />";
8 echo "Or logout <a href=\"logout.php\">here</a>";
9 }else{
10 <form name="login" method="post" action="Login.php?action=login">
11 <p align="center">Login</p>
12 <p align="center">
13 Username:
14 <input type="text" name="username">
15 Password:
16 <input type="password" name="password">
17 </p>
18 <p align="center">
19 <input type="submit" name="Submit" value="Login">
20 </p>
21 <p align="center">'Need a username? Register '<a href=\"Register.php">'here.'</a></p>
22 </form>
23 }
24 ?>

Thanks

-BRONIC

Last edited by BRONIC; Jul 8th, 2007 at 17:25.
Reply With Quote

  #2 (permalink)  
Old Jul 8th, 2007, 20:57
Reputable Member
Join Date: Jul 2005
Location: Melksham, Wilts, UK
Posts: 293
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Help!

You have switched from PHP program code to html without a ?> close tag, so that the server's PHP interpretter is trying to interpret your html.

Add ?> on the start or line 10 and <?php on the start of line 23
Reply With Quote
Reply

Tags
code, help, php

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 07:33.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43