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
| Setup the Django and run upto hello world | |
| ========================================= | |
| Install python and python-pip | |
| then use the pip to install the python | |
| pip install Django==1.7.3 | |
| To check if installed properly (Go to pythong CLI) |
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
| Setup the Django and run upto hello world | |
| ========================================= | |
| Install python and python-pip | |
| then use the pip to install the python | |
| pip install Django==1.7.3 | |
| To check if installed properly (Go to pythong CLI) |
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
| function money_format_nep($number, $is_unicode=true) | |
| { | |
| //number_format($number,"."); | |
| if(strstr($number,"-")) | |
| { | |
| $number = str_replace("-","",$number); | |
| $negative = "-"; | |
| } |
NewerOlder