luvrockz;10970783 wrote:no they doesnt show any error at all... if u want you can take a look at the ful html and php script
this is the html page that im using
http://pastie.org/1382154
and here is the php code
http://pastie.org/1382159
pls let me knw whats wrong
Well, I'm not sure where to start. First off, the code you show in the original post doesn't seem to appear in the script you pasted --- none of the 1300+ lines.
Second, in the script you did post to pastie.com, you have this at the top:
ini_set("error_reporting",false);
Try setting that to "true" to see errors.
Next, the script features a ton of short open tags, which are deprecated and might not be supported by your server configuration. You'll need to change things like this:
<?
some_code();
?>
// or this
<?=$foo; ?>
// to this:
<?php
some_code();
?>
// and this:
<?php echo $foo; ?>
For further clarification, this is a "short open tag":
<?
and this is a proper opening tag:
<?php
In Elder Days, short open was permitted, but most hosts don't allow it anymore. The PHP team made this change when the use of XML became widespread.
The error I received was "unexpected end", so I'm thinking the problem is the short_open tags. Try fixing these issues and let us know what's up.