根据图片设定网页框大小
Oct 27th, 2006 by song

[code]<SCRIPT LANGUAGE="JavaScript">
<!--

function ResizeToFit(){
 var imgWidth;
 var imgHeight;
 if (document.imgLarge && document.imgLarge.complete)
 {
 imgWidth = document.imgLarge.width + 20;
 imgHeight = document.imgLarge.height + 115;
 window.resizeTo(imgWidth,imgHeight);
 }
}
//-->
</SCRIPT>[/code] Read the rest of this entry »

PDO MYSQLI 学习
Oct 26th, 2006 by song

MYSQLI
连接数据库

< ?php
$mysqli = new mysqli(“localhost”, “root”, “secret”, “test”);
if (mysqli_connect_errno(  )) {
   printf(“Connect failed: %s\n”, mysqli_connect_error(  ));
   exit (  );
} else {
   printf(“Connect succeeded\n”);
}
?>

错误检查

1) Read the rest of this entry »

SIDEBAR
»
S
I
D
E
B
A
R
«
»  Substance:WordPress   »