Jump to content

echo php script


professor_z

Recommended Posts

I'm having trouble with this code

[code] echo '<html>
<head>
<title>File Download</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="refresh" content="<?php echo($wait); ?>; url=index.php?get=<?php echo($get); ?>&send">[/code]

My page doesn't load anything

Link to comment
https://forums.phpfreaks.com/topic/4589-echo-php-script/
Share on other sites

try

[code]<?php
echo '<pre>';

echo htmlentities('<html>
<head>
<title>File Download</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="refresh" content="<?php echo($wait); ?>; url=index.php?get=<?php echo($get); ?>&send">');

echo '</pre>';
?>[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.