Hi there,
Am making a website for a friend and have encountered a problem that i need fixing fast.
I get this error when i try to run the code below:
QuotePHP Error Message
Warning: Unexpected character in input: '' (ASCII=92) state=1 in /home/a1408362/public_html/admin.php on line 75
PHP Error Message
Parse error: syntax error, unexpected T_LNUMBER in /home/a1408362/public_html/admin.php on line 75
This is the code (sorry about the length, just didn't want to leave anything out!):
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html
xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html;
charset=utf-8" /><title>Radio Ilam | Radio of the Suburbs</title><meta name="keywords" content="music
note, free template, website template, CSS, XHTML" /><meta name="description" content="Music Note - free
CSS template provided by templatemo.com" /><link href="templatemo_style.css" rel="stylesheet"
type="text/css" /><style type="text/css">
.style1 {
text-align: center;
}
.style2 {
font-weight: bold;
color: #C32929;
}
.style3 {color: #FF0000}
td {padding: 2px; vertical-align:top; border-top: 1px solid #CCC;}
</style></head>
<body>
<?php
// Connects to your Database
mysql_connect("PURPOSELY LEFT OUT", "PURPOSELY LEFT OUT", "PURPOSELY LEFT OUT") or die(mysql_error());
mysql_select_db("a1408362_data") or die(mysql_error());
//checks cookies to make sure they are logged in
if(isset($_COOKIE['ID_my_site']))
{
}
$username = $_COOKIE['ID_my_site'];
if ($username <> "administrator")
{ header("Location: login.php");
}
else {}
?>
<div id="templatemo_container_wrapper">
<div id="templatemo_container">
<div id="templatemo_header">
<div id="templatemo_site_title">Radio<span class="style2">Ilam</span></div>
<div id="templatemo_site_slogan">Radio of the Suburbs</div>
</div>
<div id="templatemo_menuleft"></div>
<div id="templatemo_menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="competitions.php">Competitions</a></li>
<li><a href="#">Lates Music</a></li>
<li><a href="#" class="current">Members</a></li>
<li><a href="#">Listen Live</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div id="templatemo_content">
<div id="templatemo_left_column">
<div class="templatemo_section2">
<h1>Administrator</h1>
<p>Welcome
<p><a href="logout.php">Logout</a></p>
</div>
<br />
</div>
<div id="templatemo_right_column">
<h1>Administrator</h1>
<p>
<?php
\line 100
$myResult = mysql_query("SELECT * FROM users")
or die ("Unable to select entries in database.");
print '<table>'."n";
while ($row = mysql_fetch_array($myResult, MYSQL_ASSOC)) {
print '<tr>'."n";
print '<td>' .$row['fname'].'</td>'."n";
print '<td>' .$row['lname'].'</td>'."n";
print '<td>' .$row['username'].'</td>'."n";
print '<td>' .$row['email'].'</td>'."n";
$id=$row['id'];
print '<td><a href="';
print ($server['PHP_SELF']);
print '?delete_id=' .$id.'">Delete User</a>
</td>';
}
print '</table>'."n";
if ($_GET['delete_id']) {
$id = $_GET['delete_id'];
$success = mysql_query ("DELETE FROM users WHERE id = $id")
or die ("Unable to delete record from database");
\150
if ($success) {
print "User successfully deleted";
{ header("Location: admin.php");
}
}
}
print '<form action="user_pass.php" method="post">';
print "View password of this user:";
print '<select name="catergory">'."n";
print '<option value="none">Select a User</option>'."n";
$Catergories = mysql_query('SELECT * FROM ref_catergories');
while ($Catergory = mysql_fetch_array($Catergories, MYSQL_ASSOC)){
echo "$RefLinks[cat_id]==$Catergory[id]
n";
print '<option value="'.$Catergory['id'].'">'.$Catergory['catergory_name']."</option>n";
}
print '</select>'."<br />n";
print '<input type="submit" value="Ok">;
print '</form>';
?>
</p>
</div>
</div>
<div id="templatemo_footer">Copyright © 2009 RadioIlam<a href="#"></a></div>
</div>
</div>
</body>
</html>
PHP & Images [Resize, Crop, Save]
Hey! Well I have a little dilema, hoping I could find some guidance.I have a CMS and on the actual website I am building I have a nice little slideshow script that runs through all the images in a
BIG file upload!
Hey guys!I'm trying to upload a file, it works well with smaller files but with 60mb+, I get a POST size error even though I've raised POST max size:Code: ini_set( 'post_max_size', '500M' );This error
Unexpected T_Variable ?
Hi all,I dont really know what I am doing!! I know I'm doing something wrong, and I know its on line 42 "$sql="select pname, award, aw_year" but I dont know why its a problem?? Can
Uploading/Downloading files stored in MySQL database
Hey all,This problem just came up in my website and I'm having a hard time figuring out what's wrong. I have a intranet portal running (custom built) and I'm storing all different types of documents
Count
Getting the same count everytimeCode: $visitquery = mysql_query("SELECT COUNT(*) FROM visitors WHERE ownerkey = '$uuid' & region = '$selected' AND `date` < DATE_ADD(CURDATE(),
WS-Security PL/SQL Forms
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Prod
New Search Engine
Hey everyone,I have a ZIP Code Radius search engine already functional. it displays all of the ZIP codes within a specified mileage around a central ZIP code.I have an auction site that the client
md5 is it unique
I know this is most likely one of many simple questions that can be found semi easily. But I'm pressed for time. I have searched google, php.net, etc. But it only tells me how to make md5 hashes. Ok
Simple AND question
Hello,I've got following code:Code: if(strpos($row[13],"http://")!==false) $info['results'][$num]['player']="PREVIEW"; else
a function to check directory depth
I'm working on a php script to upload files in to a set directory.the user can select to upload into the "upload" directory or any of its subdirectories.at the moment the user is able to