My Daily Git
I finally complete learning how to Git and after a few days of reading and testing I made some list of Git command that will help from a daily programming routine.
$git init – Create empty git project.
$git...
PHP Is A Templating Language
I found out this blog post from Terry Chay he is a PHP developer and advocate, this is one of his post about the important about PHP as programming language.
PHP is a templating language, not a general...
Install And Configure LAMP [Linux, Apache, MySql & PHP]
Sharing some of my configuration using Linux Trisquel Gnu/Linux free operating software, as a web developer LAMP or Linux Apache MySql and PHP are some of standard application, database and tools that...
Shop & Pay Cash – Facebook Apps
March 2011, when I become a part of development group of cashsense.com, my part is to develop and integrate merchandise item to facebook application page as store, using the new facebook graph API and...
Sharing Simple PHP Web Application Project
I’m sharing this simple PHP web application project that I found in my archive (Not in my closet), it’s for a cell phone loading station business I develop 8 years ago.
This php application includes...
Edit WordPress 3.1.1 Meta Widgets
Open the file wp-includes\default-widgets.php
Go to line 279.
Here you can remove or add links that been display in WordPress default Meta Widgets.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
class...
PHP cURL Example
The following example is on how to use the PHP cURL request and transform the respond data into simple xml content.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//construct...
PHP FTP/SFTP Function
Sharing the two powerful PHP file transfer function using FTP and SFTP.
FTP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
function...




