<? If (!isset($string)||$string==""){$string="Go!";} ?> <form action=button.php> Button text; <input type=text name=string value="<? pint $string; ?>"> <input type=submit> </form> |
<img src="green_ellipse.php?string=<? print rawurlencode($string); ?>"> |
<? Header("Content-Type: image/gif"); //现在我们将生成一幅空的图象,并且将其赋值给变量$id: $id=ImageCreate($img_width,$img_height); //图像润色 …… //使用内嵌的五号字在按钮上写上文字,最后给按钮上的文字设置变量$black的颜色: ImageString($id, 5,($img_center_x-($str_width/2+1), img_center_y-($str_height/2)), $string, $black); //最后,把图象从内存中道出到标准输出缓冲--这是Server将得到的图象的内容: ImageGIF($id); ?> |
<?php 初始化,参数设定 …… 在图象的左端画了一个半圆,再从六点通过九点画到12点: ImageArc($id,20,$img_center_y,20,$str_height+20,90,270,$black); 对于右端,是同上面一样的,只是从右端20象素开始画起,并且掠过相反的半圈儿--从12点通过3点到六点: ImageArc($id,($img_width-20),$img_center_y,20,$img_height+20,270,90,$black); 最后,从一端的端顶向另一端画一条直线,同样在底部也画一条直线。这样闭合了形状的内部。 ImageLine($id,20,0,($img_width-20),0,$black); ImageLine($id,20,$img_height-1,($img_width-20),$img_height-1,$black); 在这个区域里填充变量$yellow所定义的颜色,并充满整个区域: ImageFillToBorder($id,$img_center_x,$img_center_y,$black,$yellow); 再将字符串写入到图象中,之后向标准输出打印图象: ImageString($id, 5, ($img_center_x-($str_width/2)+1,($img_center_y-($str_height/2)), $string, $black); ImageGIF($id); ?> |
<? $id=ImageCreateFromGif("mymonkey.gif"); //现在我们设置字体颜色,并将它放到图象上。 $yellow=ImageColorAllocate($id,,255,255,0); //以左上角为(0,0)点,从(10,20)地方开始用内嵌四号字体写上字符串,同时我将它设为大写,并加了感叹号,以使其显得更加生动。 ImageString($id,4,10,20,strtoupper($string."!"),$yellow); //现在我们将图象从内存存入文件newmonkey.gif。 ImageGIF($id,"newmonkey.gif"); ?> 这样就差不多了:newmonkey.gif可以用来显示了,浏览器的设置是这样的: <td> <img src="newmonkey.gif" border=0> </td> </tr> </table> |
< IMG SRC=# ALT=# Width=# Height=# ...... > |
<?php $rows[]={12,45,43,23,32,87,14,22,19,40}; //数组初始化,可以从数据取出。 $sums=0; for ( $i = 0 ; $i < 10 ;$i++ ) $sums+=$rows[$i]; //求和 for ( $i = 0 ; $i < 10 ;$i++ ) { if ($sums * $rows[$i] ) { //为0则不进行处理,避免0除溢出 $tmp=$rows[$i]/$sums*100; echo " <img src=bar.gif height=9 width=".$tmp.">"; //输出图形,bar.gif是只有一个点的图形文件,这里是横向图形,纵向改height即可. echo " (".sprintf('%01.2f',$tmp)."%)"; echo "<BR>"; } } ?> |
???Load Variables ("check.php", 1, vars=POST) |
???<? ???..... ???.... ???///用sql 语句,找出$name的密码赋给 password ???//判断第二个文本框的内容,密码是否第一个文本文本框name找到的密码 ???if($passwd==$password) ?????echo "output=welcome ".$name." this is a program by php and flash"; //如果等于的话,就将output文本框的值等于欢迎信息 ???else ?????echo "output=sorry , ".$name." your password is not correct"; //如果不等于,就显示出错信息。 ????> |