Source Code

Accessing Attributes of Objects
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
Accessing a Property from Within a Method
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
abstract keyword is used to say that a method or class cannot be created in your program as it stand
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
abstract class demo
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
A Basic PHP 5 Class
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
A Basic PHP 4 Class
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
Draw pie chart
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
UPLOAD FILES USING PHP AND CURL
CodeUPLOAD FILES USING PHP AND CURLRecently I was working on one REST API, in which I was sending API request using cURL and to send parameters I was using POST method.In one of the API request I wanted to send or upload a file through cURL, so I started working and got the solution for the …[ More ]
PHP CODE for Navigation
PHP CODE for Navigationif($_SERVER['QUERY_STRING'] == "SoD") print "owns you!";else print "don't front!";?>Description: Instead of calling files like ( index.php?str=blah ) , you could do ( index.php?SoD ) and it would print out "owns you!". You can add more strings in there, this is just an example…[ More ]
php - How to get rid off this error with TCPDF 'TCPDF ERROR Some data has already been output to b
php - How to get rid off this error with TCPDF  'TCPDF ERROR  Some data has already been output to b// File name  : example_052.php// Begin  : 2009-05-07// Last Update : 2013-05-14//// Description : Example 052 for TCPDF class//  Certification Signature (experimental)//// Author: Nicola Asuni//// (c…[ More ]
Convert XML to an array in PHP Code
Convert XML to an array in PHPCode [ More ]
Upload file using Java Swing and PHP
Java Swing File upload with Php on the serverYou can upload a file through your swing application to a web server supporting PHP (Apache).You can use jakarta HttpClient libraryFollowing is the code at the client side import java.io.File;import org.apache.http.HttpEntity;import org.apache.http.HttpRe…[ More ]
PHPKode > scripts > TCPDF > tcpdf/examples/example_016.php
PHPKode > scripts > TCPDF > tcpdf/examples/example_016.php002 //============================================================+ 003 // File name  : example_016.php 004 // Begin  : 2008-03-04 005 // Last Update : 2013-05-14 006 // 007 // Description : Example 016 for TCPDF class 008 //  Document Encryp…[ More ]
Managing X.509 certificates using PHP
Managing X.509 certificates using PHP  req ] default_bits  = 1024 default_keyfile  = privkey.pem distinguished_name  = req_distinguished_name attributes  = req_attributes x509_extensions  = v3_ca dirstring_type = nobmp [ req_distinguished_name ] countryName  = Country Name (2 letter code) countryNam…[ More ]
Retrieving a Website Using Sockets : socket_create « Network « PHP
Retrieving a Website Using Sockets  $address = "127.0.0.1"; $port = 80; $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); socket_connect($socket, $address, $port); socket_write($socket, "GET /index.php HTTP/1.0\n\n"); $result = ""; while($read = socket_read($socket, 1024)) { $result .= $read; …[ More ]
Using exec() to Produce a Directory Listing : exec « Utility Function « PHP
Using exec() to Produce a Directory ListingUsing exec() to Produce a exec( "ls -al .", $output, $return );print "Returned: $return";foreach ( $output as $file ) { print "$file";}?> …[ More ]
Symmetric Decryption : mcrypt_enc_get_key_size « Utility Function « PHP
 Symmetric Decryption srand((double)microtime( )*1000000 ); $td = mcrypt_module_open(MCRYPT_RIJNDAEL_256, '', MCRYPT_MODE_CFB, ''); $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND); $ks = mcrypt_enc_get_key_size($td); $key = substr(sha1('Your Secret Key Here'), 0, $ks); mcrypt_generi…[ More ]
Executing External Applications Using exec() : exec « Utility Function « PHP
 Executing External Applications Using exec()  exec("ls /foo/", $output, $return_val); echo "Exit code of: $return_val\n";?> Related examples in the same category1.    string exec ( string command [, array &output [, int &return_val]] ) runs an external program2.    Using exec() to Produce a Directo…[ More ]
Creating a Simple Socket-Based Server : socket_create « Network « PHP
Creating a Simple Socket-Based Server : socket_create Â« Network Â« PHP set_time_limit(0); $address = "127.0.0.1"; $port = 4545; $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); socket_bind($socket, $address, $port); socket_listen($socket); $connection = socket_accept($socket); $result = trim…[ More ]
Creating the Android Application to Interact with our Remote Database!
Creating the Android Application to Interact with our Remote Database!In this Android Remote Databases mini series we’ll create our Android application to parse the JSON data that our PHP scripts output. Our Android application will be able post data to our PHP scripts to register a new user, sign…[ More ]