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
replace git origin url | |
git remote set-url origin git://new.url.here |
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
<html> | |
<head> | |
<title>Upload Multiple</title> | |
</head> | |
<body> | |
<?php | |
$file = fopen("demo.txt", "r"); | |
while (!feof($file)) { | |
echo fgets($file). "<br />"; | |
# code... |
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
// Get Raw query from object query | |
echo $query->createCommand()->getRawSql(); | |
// get model info from data provider | |
$dataProvider->getModels() | |
//add search with multiple table | |
$query = Bill::find(); | |
$query->joinWith(['billSingleLocals']); | |
$query->joinWith(['billItemSingles']); |
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. First Update Sever | |
apt-get update | |
2. Install Apache2 | |
apt-get install apache2 | |
---Test your server by entering your ip on browser | |
3. Install mysql | |
apt-get install mysql-server |
NewerOlder