dmitri wrote: |
I'm not sure I got it right. What's expected from a php script like below?
mytest.php:
<?php
echo "hello world";
?> |
and from the script below
remove_account.php
<?php
...
$result = mysql_query(sprintf('delete from site_accounts where user_id=%d', $_GET['uid']));
if (!$result) {
die('failed to delete: ' . mysql_error());
}
?> |
|
Dimitri,
In both cases absolutely nothing would be shown. The html preview tab should only process html tags and totally ignore the php ones.
Maybe I'm wrong but I get the feeling you might be confused because you output all html in a php file from within php tags..
ie.. (in a very simplified form )
<?php
echo "<html><body><p>hello there</p>";
echo $fredsname;
echo "</body></html>";
?>
Whereas what we are basically meaning is this....
<html>
<body>
<p>hello there</p>
<?php
echo $fredsname;
?>
</body>
</html>
now the file in question would still have a php extension of course so that it is parsed but it is in effect basically a html file with php elements. So what would be ideal for us is if the html preview tab displayed it as a normal html file but just ignored everything between the php tags. If we need to see the result of the php we can either run the debugger or just view the file through our local webserver.
Does this make things clearer or have I totally confused the issue?
Richard.