This file contains 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
::-webkit-input-placeholder { | |
color: white; | |
} | |
:-moz-placeholder { /* Firefox 18- */ | |
color: white; | |
} | |
::-moz-placeholder { /* Firefox 19+ */ | |
color: white; |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<title>Document</title> | |
<link src="css/style.css" rel="stylesheet"> | |
</head> | |
<body> | |
<header> | |
<div class="container"> | |
... |
This file contains 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
SELECT food.id as id, food.name as name, images.name as image_name | |
FROM images INNER JOIN food | |
ON food_id = food.id | |
GROUP BY food_id | |
ORDER BY food.id DESC | |
LIMIT 6'; |
This file contains 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
SELECT food.id as id, food.name as name, images.name as image_name | |
FROM images INNER JOIN food | |
ON food_id = food.id | |
GROUP BY food_id | |
ORDER BY food.id DESC | |
LIMIT 6'; |
This file contains 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 | |
$i = 0; | |
for( $i = 0; $i < 10; $i++ ) { | |
echo $i; | |
} | |
function name($m) { | |
return m * 2; | |
} | |
?> |