Batangas Information Technology Society 2012 [BITS]
Once again I attended the BITS conference or the Batangas Information Technology Society event is an annual event of where all IT students in Batangas gather to learn in 1 day IT lectures and industry...
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...
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...


