This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
// If you GET/POST/REQUEST variables from extern | |
// Do not forget to protect them from overriding | |
if( !isset($_GET["test1"]) && | |
!isset($_POST["test2"]) && | |
!isset($_REQUEST["test3"])) { $test1 = htmlentities($_GET["test1"]); | |
$test2 = htmlentities($_POST["test2"]); | |
$test3 = htmlentities($_REQUEST["test3"]); } | |
// If you use extern variables in MYSQL please |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- VHDL syncrhonous process with an asynchron reset | |
-- This is very important for the synthesis tool. | |
process(EN, clk) begin | |
-- Asynchron Reset | |
if(EN = '0') then | |
-- Synchron Process | |
elsif(rising_edge(CLK)) then | |
end if; |