-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecondpractical.php
More file actions
38 lines (34 loc) · 1018 Bytes
/
secondpractical.php
File metadata and controls
38 lines (34 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$txt="hello";
$str ="Tutorials Class";
echo"This is a $str <br>";
var_dump("$txt");
echo strrev($str)
?>
<?php
$str ="Tutorials Class";
echo strlen($str)
?>
<html>
<head>
<title>
array to string
</title>
</head>
<body>
username :<input type="text" name="username" placeholder="enter name" required /><br/><br/>
select your favourite colors:<br/>
<input type="checkbox" name="checklist[]" value="red"/>
Red <br>
<input type="checkbox" name="checklist[]"value="white"/>
white <br>
<input type="checkbox"name="checklist[]" value="blue"/>
Blue <br>
Green<input type="checkbox"name="checklist[]" value="Green"/></br>
Black<input type="checkbox"name="checklist[]" value="Black"/></br>
Yellow<input type="checkbox"name="checklist[]"value="Black"/></br>
Bisque
<input type="checkbox" name="Bisque" id="Bisque">
</body>
</html>
?>