PHP代码在HTML代码中不起作用

时间:2015-02-09 18:14:16

标签: php html dreamweaver

我是PHP的初学者,但我很专业,我正在制作一个小的PHP项目,比如在PHP中创建登录和注册表单等等,我仍在努力创建验证码安全码,我的代码正在运行但我有一个问题,我认为这与Dream Weaver或它的配置有关。问题在于,当我不使用任何HTML标签时,我的PHP代码正常工作,但是当我使用HTML标签时,无论我在何处使用它们,在PHP代码之前或之后它都无法正常工作。我看到这个链接与我的问题有关,但没有帮助 PHP inside HTML doesn't work
任何帮助将不胜感激! 请注意,我使用的是EasyPHP网络服务器 这是我创建验证码安全码的PHP代码 - " index.php":

<?php

session_start();
$_SESSION['secure'] = rand(1000,9999);


?>

<html>
<body>

<img src="genereate.php" >

</body>
</html>

<?php

echo $_SESSION['secure'];

?>

这是我的&#34; generate.php&#34;代码:

<?php

header("Content-type: image/jpeg");

if(isset($_SESSION['secure']))
  $text = $_SESSION['secure'];
$font_size = 30;

$image_width = 100;
$image_height = 20;

$image = imagecreate($image_width , $image_height);
imagecolorallocate($image , 255 , 255 , 255);
$text_color = imagecolorallocate($image , 0 , 0 , 0 );

for($x=1 ; $x<=30 ; $x++)
{
    $x1 = rand(1 , 100);
    $y1 = rand(1 , 100);
    $x2 = rand(1 , 100);
    $y2 = rand(1 , 100);

    imageline($image , $x1 ,$y1 , $x2 , $y2 , $text_color); 
}

imagettftext($image , $font_size , 0 , 15 , 30 , $text_color , 'font.ttf' ,![enter image description here][2]text);
imagejpeg($image);


?>

我已附上以下结果

0 个答案:

没有答案