init web ems all

This commit is contained in:
agtuser
2024-09-27 17:13:36 +08:00
parent 81c97acbe9
commit 5cc56f8078
4263 changed files with 798779 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 B

View File

@@ -0,0 +1,11 @@
<script language="JavaScript">
</script>
<form name=myform>
name:<input type=name size=10><br>
<input type="image" src="../../images/search.gif" name="sub">
</form>
<?php
$a=array("a",2=>"b");
print_r($a);
?>

View File

@@ -0,0 +1,27 @@
<?php
//Include the head file
require("../../inc/header.inc");
?>
<?php
$value="87";
//1000 0111
$v=getBitValue($value,"0.0");
echo "$v ";
$v=getBitValue($value,"0.1");
echo "$v ";
$v=getBitValue($value,"0.2");
echo "$v ";
$v=getBitValue($value,"0.3");
echo "$v ";
$v=getBitValue($value,"1.0");
echo "$v ";
$v=getBitValue($value,"1.1");
echo "$v ";
$v=getBitValue($value,"1.2");
echo "$v ";
$v=getBitValue($value,"1.3");
echo "$v ";
?>

View File

@@ -0,0 +1,10 @@
<html>
<head><title>Solution</title></head>
<body>
<?
$name=date("d");
echo "Your name is $name,and your age is $age";
?>
</body>
</html>