[Solved] don´t recognize variable of php

Your trying to access the value of age from a page( dos.php) but you posting it to (two.php) and your missing $_POST[‘age’]. one.php <HTML> <BODY> <FORM ACTION=”two.php” METHOD=”POST”> Age: <INPUT TYPE=”text” NAME=”age”> <INPUT TYPE=”submit” VALUE=”OK”> </FORM> </BODY> </HTML> two.php <HTML> <BODY> <?PHP $age = $_POST[‘age’]; print (“The age is: $age”); ?> </BODY> </HTML> 0 solved … Read more

[Solved] how to use the keys F1 to F10 in C code

For Windows, there is the _getch function, which returns the bytes of a key code, one by one. You can get a function key that way, detecting it by the presence of certain codes: 0x00 or 0xe0 as shown in the example in [C\C++] – how get arrow keys(correctly) using getch()?. When _getch returns one … Read more

[Solved] How To Use Image As A CheckBox in html [duplicate]

offer a simple solution to css DEMO HTML <input type=”checkbox” id=”checkbox-id” /> <label for=”checkbox-id”>Some label</label> CSS input[type=”checkbox”] { position: absolute; left: -9999px; } input[type=”checkbox”] + label { background: url(http://xandeadx.ru/examples/styling-checkbox/checkbox-sprite.gif) 0 0 no-repeat; padding-left: 20px; } input[type=”checkbox”]:checked + label { background-position: 0 -32px; } 2 solved How To Use Image As A CheckBox in html [duplicate]

[Solved] Call function when server time is reached

i have tried my best. Here my Script <script type=”text/javascript”> var now = new Date(); var calMillisecs = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 17, 57, 0, 0) – now; if (calMillisecs < 0) { calMillisecs += 86400000; } setTimeout(function(){alert(“Uhrzeit Erreicht !”)}, calMillisecs); </script> Works great. But any Ideas how i can use an official NTP Server … Read more