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
git status til að tékka hvort eitthvað hafi breyst | |
git pull origin master sækir nýjustu breytingar af github server | |
þegar þú ert búinn að breyta e-u | |
git commit -am "Skilaboð um hverju þú breyttir" | |
til öryggis gera | |
git pull origin master, gæti verið að einhver hafi breytt einhverju í millitíðinni | |
git push origin master |
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
1: Add R2, R3, #100 | |
2: Sub R9, R2, #30 | |
1 2 3 4 5 6 7 8 9 | |
1: F D C M W | |
2: F / / / D C M W |
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
<form action="phpskra.php" method="POST"> | |
<input type="text" name="titill" /> | |
<textarea name="uppskrift"> | |
</textarea> | |
<input type="submit" /> | |
</form> | |
Þetta myndi þá skila POST requesti á phpskra.php þegar ýtt er á Submit takkann | |
og breyturnar myndu vera aðgengilegar í PHP-inu í $_POST['titill'] og $_POST['uppskrift'] |
NewerOlder