Follow me on Twitter to receive updates, free scripts and ongoing announcements!

PHP downloadable file

Written by Codes Tips on November 18, 2009 – 1:40 pm -

Text downloadable file

Last days I needed to create a file which had to be downloaded by many users. The file had to be in plain text and contents from file come from database. Because I didn’t had a separate folder for each user I couldn’t write the information to a file to the server and put a link in order the user to download it. I thought a little bit how to handle it and found a very simple solution to to make a file downloadable to users. I even try to other popular formats like .doc, .xls,.csv,.dat and it works really nice. Extension that I tested it and didn’t worked are .xlsx and .pdf.

In order to make a file downloadable you should modify the header of the page to make Content-type: application/octet-stream and Content-Disposition: attachment; filename=\”downloadableFile.extension\” in order to inform the browser that there is an attachment binary file. The file will open in a window to inform the user it to open it with a default application or save it to disk.
Code for downloadable file:

<?
		header("Content-type: application/octet-stream");
		header("Content-Disposition: attachment; filename=\"downloadablefile.txt\"");
		echo 'Contents of plain text downloadable file';  
?>

CSV downloadable file

The real magic comes when you wanna make csv file downloadable. You can read data from a mysql table and write the contents to a csv file. You should only read contents from a table and using echo output to the file.

<?
		header("Content-type: application/octet-stream");
		header("Content-Disposition: attachment; filename=\"downloadablefile.csv\"");
		$connect = mysql_connect($server, $user, $password)
			or die ("Database CONNECT Error"); 
 		$resultcsv = mysql_db_query($database, "select * from $csvTable");
		while ($query = mysql_fetch_array($resultcsv)) 
		{ 
			echo $query["Name"].",".$query["City"]."\n";
		}
		mysql_close($connect);
?>

Excel downloadable file

Code for generating a excel downloadble file:

<?
		header("Content-type: application/octet-stream");
		header("Content-Disposition: attachment; filename=\"downloadableFile.xls\"");
		$connect = mysql_connect($server, $user, $password)
			or die ("Database CONNECT Error"); 
 		$resultxls = mysql_db_query($database, "select * from $xlsTable");
		while ($query = mysql_fetch_array($resultxls)) 
		{ 
			echo $query["Name"]."\t".$query["City"]."\n";
		}
		mysql_close($connect);
?>

You can look through records from database and output as I did for csv

Doc downloadable file

You can even make a downloadable .doc files by changing the file extension to doc.

<?
		header("Content-type: application/octet-stream");
		header("Content-Disposition: attachment; filename=\"downloadablefile.doc\"");
		echo 'Contents of Word Document.';  
?>

Tags: ,
Posted in PHP/MYSQL | No Comments »

PHP string manipulation 3

Written by Codes Tips on August 1, 2009 – 1:00 pm -

This is the third part about how to manipulate strings in PHP.

Replace all occurrences of sub strings with a replacement string

If you wanna replace all occurrence of a substring inside a string you should use the function str_replace passing as first argument the string(or array of strings) you wanna search, second argument the string(or array of strings) you wanna make the replace, the third is the string you wanna search in and the fourth argument is the number of replacements the function should make. It returns a string after all replacements have been made.
Declaration: mixed str_replace ( mixed $SearchFor, mixed $ReplaceWith , mixed $String[, int &$number] )
Example:

<?php
$string= "This is a str_replace Function Test";
$searchFor = array("Function","Test");
$replaceWith = array("function","test");
echo str_replace($searchFor,$replaceWith,$string);
?>

Output: This is a str_replace function test

Split string one by one

To tokenize string in php you can you the function strtok in order to split a string. Each smaller string it’s separated by a delimeter. It takes as a first argument the string that will be split and the second the delimeter that it is used to split it.
You should call the first time the function as strtok($String,$delimiter) and returns the first string that is delimited. Any subsequent calls of the function should be like strto($delimiter(s)), because the function keeps into memory the variable $String that it’s delimited.
You can specify multiple delimiter
Declaration: string strtok(string $String, string $delimiter(s))
Example:

<?
$string = "This is an strtok Function Test";
$tok = strtok($string, " ");
 
while ($tok !== false) {
    echo "String=$tok<br />";
    $tok = strtok(" ");//returns the next splitted string in the $string variable
}
?>

Output:
String=This
String=is
String=an
String=strtok
String=Function
String=Test

Split a string by a delimeter

Disadvantage of strtok function it’s that you should call it every time you wanna split the string. You can use explode function in order to split the string and returns an array of string with all the string splitted. The first argument is the delimiter, the second the string you wanna split and you can also specify an optional integer argument that specify the limit of strings splitted.
Declaration: array xplode(string $delimiter , string $String[, int $limit ])
Example:

<?
$string = "This is an explode Function Test";
$explodedstring = explode(" ", $string,3);
 
foreach($explodedstring as $substring)
 echo $substring.'<br />';
?>

Output:
This
is
an explode Function Test

Union elements of array in a string

If you wanna join array elements into 1 string you should call the function implode. The first argument that you should pass to the function is the separation and the second one the array of string.
Declaration: string implode ( string $separator , array $Strings)
Example:

<?
$strings = array('This','is','a', 'implode','function','test');
$separator = " ";
echo implode($separator,$strings);
?>

Output:
This is a implode function test

Replace a string by regular expression

You can use regular expression in php to replace using the function preg_replace. You should pass the first argument as a regular expression pattern - it can be a string or an array of string, the second is the string or array of string that you use to replace the pattern, third argument is the string you search in. The final two arguments are optional, first parameter is the limit of replacement you should make and the final one is the value of replacements that have been made in the string.
Declaration: mixed preg_replace (mixed $regularExpression, mixed $replaceWith, mixed $String [, int $limit= -1 [, int &$count ]] )
Example:

<?
$string = "This is a preg_replace bad, words, Function Test";
$pattern = "(\w+,)";
$replaceWith = "";
echo preg_replace($pattern, $replaceWith, $string)."<br />";
?>

Output:
This is a preg_replace Function Test

PHP string manipulation - part 2


Tags: ,
Posted in Codes, PHP/MYSQL | 1 Comment »

PHP ajax cascading dropdown using MySql

Written by Codes Tips on May 16, 2009 – 5:31 pm -

To do cascading drop down in php using mysql we can use AJAX. The name AJAX is from asynchronous JavaScript and XML and it’s a new technique for web development to build rich interactive web application. The power of this technique comes from the fact that it can send to server requests from the client side, in order to not reload the page. The object that is using AJAX to send and retrieve data between server and the client is named XmlHttpRequest.
To build a cascading drop down in php to retrieve data from a mysql server we will first populate a drop down with the results from a first table from a mysql database. The first table is linked with a second table by a field. When we change the drop down we should assign to OnChanging event an Javascript function that will populate the second drop down . The function will create a new XmlHttpRequest object and make a call to other php script, grab data and populate the second drop down. The script that it’s called will fetch the results for that field that was changed.

Watch a demo here:populate drop down using ajax

Download php cascading drop down using mysql


Tags: , ,
Posted in AJAX, Codes, PHP/MYSQL, Scripts | 15 Comments »

PHP copy directory from source to destination

Written by Codes Tips on May 2, 2009 – 1:02 pm -

To copy a directory source to a destination directory you will need to scan the source directory with all files and directory and copy to the destination. To accomplish this we should make a recursive function that will copy the files from source to target dir. If it is not a directory in the source dir we should just copy the file to target. If it is a directory in the source dir then we should create a new dir in the target directory and apply the same mechanism, so we need to recall again the same function.
Here is the code to do this:

<?
function copy_directory( $source, $destination ) {
	if ( is_dir( $source ) ) {
		@mkdir( $destination );
		$directory = dir( $source );
		while ( FALSE !== ( $readdirectory = $directory->read() ) ) {
			if ( $readdirectory == '.' || $readdirectory == '..' ) {
				continue;
			}
			$PathDir = $source . '/' . $readdirectory; 
			if ( is_dir( $PathDir ) ) {
				copy_directory( $PathDir, $destination . '/' . $readdirectory );
				continue;
			}
			copy( $PathDir, $destination . '/' . $readdirectory );
		}
 
		$directory->close();
	}else {
		copy( $source, $destination );
	}
}
?>

Calling the function:

copy_directory('dirnameSource','dirnameDestination');

Download copy directory code


Tags: ,
Posted in Codes, PHP/MYSQL | 1 Comment »

PHP logout script

Written by Codes Tips on April 25, 2009 – 4:19 pm -

This is a short php logout script for logging out a user that you previously logged in through your website:

<?
function redirect($url)
{
  echo "<META HTTP-EQUIV=\"Refresh\" CONTENT=\"0;URL=$url\">";
  echo "Click <a href=$url>".here.'</a> if you not get redirected';
}
  session_start();//initialize the session data
  $_SESSION['session_user'] = '';//clear the session user that you created on login
  unset($_SESSION['session_user']);//destroy the session variable of the user
  //redirect to home page
  redirect('index.php');
?>

Tags: ,
Posted in Codes, PHP/MYSQL | No Comments »

PHP ftp upload tutorial

Written by Codes Tips on April 12, 2009 – 4:04 am -

To upload a file to ftp you need a html form where you can insert the ftp details, like the ones described above:
server - is the server on which he wanna upload the file
username - is the user for which he makes the connection to ftp server
password - is the user password for ftp username
path to server - is the path on the ftp server which he wanna upload his file.
user file - is the file of the you wanna upload to ftp server

Hint: If you want to offer to your website members a form where he will upload his file, you should take the ftp server details and path, from a config file. Here we made a complete example how to upload through ftp putting all the details.

We will have a POST form and an enctype of multipart/form-data because we have a file on our form.
The user form that the user will insert info is like that:

<form action="upload.php" method="POST" enctype="multipart/form-data">
<table align="center">
<tr>
<td align="right">
Server:
</td>
<td>
<input size="50" type="text" name="server" value="">
</td>
</tr>
<tr>
<td align="right">
Username:
</td>
<td>
<input size="50" type="text" name="user"  value="">
</td>
</tr>
<tr>
<td align="right">
Password:
</td>
<td>
<input size="50" type="text" name="password" value="" >
</td>
</tr>
<tr>
<td align="right">
Path on the server:
</td>
<td>
<input size="50" type="text" name="pathserver" >
</td>
</tr>
<tr>
<td align="right">
Select your file to upload:
</td>
<td>
<input name="userfile" type="file" size="50">
</td>
</tr>
</table>
<table align="center">
<tr>
<td align="center">
<input type="submit" name="submit" value="Upload image" />
</td>
</tr>
 
</table>
</form>

Now, when the user submits the form, we should get all the details that he inputed and then upload the file to the ftp server.

// the file name that should be uploaded
$filep=$_FILES['userfile']['tmp_name']; 
// ftp server
$ftp_server=$_POST['server'];
//ftp user name
$ftp_user_name=$_POST['user'];
//ftp username password
$ftp_user_pass=$_POST['password'];
//path to the folder on which you wanna upload the file
$paths=$_POST['pathserver'];
//the name of the file on the server after you upload the file
$name=$_FILES['userfile']['name'];

To upload the file , first we should establish a connection to the ftp server using ftp_connect and specifing as a parameter the ftp servver. This function return a connection id.

$con_id=ftp_connect($ftp_server);

After connecting to server we should login using the function ftp_login passing three parameters: connection id, ftp user, ftp user password and checking if the login was sucessfull

// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// check connection
if ((!$conn_id) || (!$login_result)) {
       echo "FTP connection has failed!";
       echo "Attempted to connect to $ftp_server for user $ftp_user_name....";
       exit;
   } else {
       echo "Connected to $ftp_server, for user $ftp_user_name".".....";
   }

After loging in we can upload the file to the server and after that check if the file was uploaded correctly:

// upload the file
$upload = ftp_put($conn_id, 'public_html/'.$paths.'/'.$name, $filep, FTP_BINARY);
 
// check upload status
if (!$upload) {
       echo "FTP upload has failed!";
   } else {
       echo "Uploaded $name to $ftp_server ";
   }

In the end we should close the ftp connection using ftp_close passing the connection id:

ftp_close($conn_id);

For uploading big files you should set the time limit of the server in order not to finish the script while it’s uploading:

set_time_limit(300);

Here is the complete code:

<?
if(!isset($_POST["submit"])){?>
 
<form action="upload.php" method="POST" enctype="multipart/form-data">
<table align="center">
<tr>
<td align="right">
Server:
</td>
<td>
<input size="50" type="text" name="server" value="">
</td>
</tr>
<tr>
<td align="right">
Username:
</td>
<td>
<input size="50" type="text" name="user"  value="">
</td>
</tr>
<tr>
<td align="right">
Password:
</td>
<td>
<input size="50" type="text" name="password" value="" >
</td>
</tr>
<tr>
<td align="right">
Path on the server:
</td>
<td>
<input size="50" type="text" name="pathserver" >
</td>
</tr>
<tr>
<td align="right">
Select your file to upload:
</td>
<td>
<input name="userfile" type="file" size="50">
</td>
</tr>
</table>
<table align="center">
<tr>
<td align="center">
<input type="submit" name="submit" value="Upload image" />
</td>
</tr>
 
</table>
</form>
<?}
else 
{
 
	set_time_limit(300);//for setting 
 
$paths=$_POST['pathserver'];
 
$filep=$_FILES['userfile']['tmp_name'];
 
$ftp_server=$_POST['server'];
 
$ftp_user_name=$_POST['user'];
 
$ftp_user_pass=$_POST['password'];
 
$name=$_FILES['userfile']['name'];
 
 
 
// set up a connection to ftp server
$conn_id = ftp_connect($ftp_server);
 
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
 
// check connection and login result
if ((!$conn_id) || (!$login_result)) {
       echo "FTP connection has encountered an error!";
       echo "Attempted to connect to $ftp_server for user $ftp_user_name....";
       exit;
   } else {
       echo "Connected to $ftp_server, for user $ftp_user_name".".....";
   }
 
// upload the file to the path specified
$upload = ftp_put($conn_id, $paths.'/'.$name, $filep, FTP_BINARY);
 
// check the upload status
if (!$upload) {
       echo "FTP upload has encountered an error!";
   } else {
       echo "Uploaded file with name $name to $ftp_server ";
   }
 
// close the FTP connection
ftp_close($conn_id);	
 
}
?>

Download source code


Tags: ,
Posted in Codes, PHP/MYSQL, Scripts | No Comments »

PHP paging tutorial

Written by Codes Tips on April 4, 2009 – 2:27 am -

In this tutorial I want to make a paging tutorial in php.

A friend of mine tell me to help him with a script to do paging in php from a mysql database and I would like to share with all.
If you wanna take data from a xls,csv or other files, from a database like mysql,mssql and you wanna list the results on the page, you may have many results for your result.
I want to present an example so you can understand how a paging can be made in php. I made an example about how to search results from a mysql database and make pagination on the results.

You should first have a form in html from where the user can input the search field:

<form action="Search.php" method="POST">
<table align="center">
<tr><td>Name:</td><td><input type="text" name="search" width="40"></td><td><input name=submit type=submit value=Search><input type=hidden name=hiddensearch value=yes></td></tr>
</table>
</form>

You should now put the code before the html form for verifying if the user submits the form through a POST, if not show the html form. So we will have 2 cases, when when we first post the form we will show the first page and links to all other pages. The links to other pages will look something like search.php?search=Name&page=10 -> this will fetch the results from database for the page number 10 with the search query ‘Name’. Each page will have a number of results say 20, which we will call it pagesize.

First we should connect to the mysql server and make a query on the database. We discuss previously how we can connect to a database and how to make a query, go here for learning how to connect and fetch results from mysql. After we make a query we get each row of the query result and verify if it is on the current page( if it is a post then we will get the first $pagesize records). To select records for a page we should use verify a condition for every row:

if ($nr>=($pagesize*($page-1)+1)&&($nr<=($pagesize*$page)))
{
 //write the result
}

Where $nr - is the current record
$pagesize - is the size of a page
$page - is the page number

In the end we should write all the links to other pages( the navigation through result pages part ):

<?
	echo '<tr>';
	echo '<td>';
	for ($i=1;$i<=ceil($nr/$pagesize);$i++)
	if ($i!=$page)
	  echo '<a href="Search.php?search='.urlencode($name).'&page='.$i.'">'.$i.'</a> | ';
	else
	  echo $i.' | ';  
	echo '</td>';
	echo '<tr>';
?>

Here is the complete code:

<?
 
$server="";
$user="";
$pass="";
$database="";
 
include("header.php");
 
 if($_POST['hiddensearch'] == 'yes'|| isset($_GET['search']))
  {
 
    $connect=mysql_connect($server, $user, $pass)
      or die ("Database Connection Error");
 
$pagesize=20;//how many results will be on a page	   
$page=$_GET['page'];//curent page
if ($page=="")
   $page=1;
 
//we 
if ( $_POST['hiddensearch'] == 'yes')  
$name=$_POST['search'];
else
$name=$_GET['search'];
 
//we write the query
$result = mysql_db_query($database, "SELECT * FROM Table Where Name='".$name."'");
 
 
if(mysql_num_rows($result) > 0)
{
 
    ?>
<br>
<center>Results  <?=mysql_num_rows($result);?> with <b><?echo $name;?> parameter</b></center>
 
 
 
 <TABLE align="center" cellspacing="0" cellpadding="0">
<?
$nr=0;
//fetch every row and verify if it is in the current page
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{ 
 $nr++;
 if ($nr>=($pagesize*($page-1)+1)&&($nr<=($pagesize*$page)))
 {
 
   echo '<tr>'; 
 
	echo '<td>'.$row['Name'].'</td>';
   echo '</tr>';
 }
}
 
//build the navigation links to other pages
  if ($pagesize<$nr)
   {
 
 
	echo '<tr>';
	echo '<td>';
	for ($i=1;$i<=ceil($nr/$pagesize);$i++)
	if ($i!=$page)
	  echo '<a href="Search.php?search='.urlencode($name).'&page='.$i.'">'.$i.'</a> | ';
	else
	  echo $i.' | ';  
	echo '</td>';
	echo '<tr>';
   }
echo '</table>';
 
}
else
  {
   echo 'No results found.';
 
  }
mysql_close($connect);
}
else
{
?>
<center><b>Search </b></center><br><br>
<form action="Search.php" method="POST">
<table align="center">
<tr><td>Name:</td><td><input type="text" name="search" width="40"></td><td><input name=submit 
 
type=submit value=Search><input type=hidden name=hiddensearch value=yes></td></tr>
</table>
</form>
 
<?
}
include("footer.php");
?>

Download code here


Tags: ,
Posted in Codes, PHP/MYSQL, Scripts | No Comments »

Wordpress Plugin Mass Mail

Written by Codes Tips on March 23, 2009 – 4:25 pm -

1. Description

This is a beta release of my first wordpress plugin. I called it Mass Mail because it can help you sending mass mails to a custom group from your blog. This is the first version of the plugin ( 1.0).
After you install the plugin to your blog, it is setup to send emails to you users from your blog.

2. Install

Here is a description on how to install this mass mail plugin:

1. Put MassMail.php into [wordpress_dir]/wp-content/plugins/
2. Go into the WordPress admin interface and activate the plugin
3. Optional: Go to Settings panel and click on Mass Mail, fill the group you wanna send emails and your email detail.

The plugin it’s very customizable because you can specify on which table(group) you send emails. You can for example send messages to your blog users, people that made a donation for you, people that subscribed to your blog and many other groups that you wanna send a mail.

Using Mass Mail Plugin

Mass Mail Setup

After installing the plugin you should go to Settings panel, click on Mass Mail and enter the details that you are requested.
At first it is setup to use the table wp_users that means it will send mails to all your blog users. To modify the first two values to fit to your group you should look in your Mysql wordpress database and see what table are the users stored to which you wanna send messages.
Table name: - is the table name to which you wanna send mass mails.
Table email field: - is the email field table of users specified in Table name.
Sender email: - is the sender email, that will appear in the header of the user.
Sender email will be something like name@domain.com . If you want to appear more user friendly to user headers you should customize Sender email like this Name

Send Mass Mail

After you setup the details of the group you should click on Save & Send Mails -> and fill the Subject and Message and Seconds between messages.
This will be the subject and body that every user of the group will receive in his mail and the seconds that will pass between emails that will be sent. This option is to not overload the smtp server if you send many emails.

Download Wordpress Plugin Mass Mail


Tags: ,
Posted in Codes, PHP/MYSQL, Scripts | 4 Comments »

PHP save image from url

Written by Codes Tips on March 22, 2009 – 2:11 pm -

Download Source Code

You can save image from url in PHP you should first get thesource of the image from the url  and after that save image to your server or disk depending on where you execute the php script.

First for getting an image from url you can use three ways to do this:

1. Using file_get_contents

$contents= file_get_contents('http://mydomain.com/folder/image.jpg');

2. Using fsockopen() function

To fetch an image with fsockopen() You should specify the host name of the server and the the rest or the url where the image is stored. To understand better here is a sample function, that takes the  that returns the source code of the image:

 
function GetImg($host,$link)
{
$fp = fsockopen($host, 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr (error number $errno)
\n";
} else {
$out = "GET $link HTTP/1.1\r\n";
$out .= "Host: $host\r\n";
$out .= "Connection: Close\r\n\r\n";
$out .= "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5\r\n";
$out .= "Accept-Language: en-us,en;q=0.5\r\n";
$out .= "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n";
$out .= "Keep-Alive: 300\r\n";   
$out .= "\r\n";
fwrite($fp, $out);
$contents='';
while (!feof($fp)) {
$contents.= fgets($fp, 1024);
}
fclose($fp);
return $contents;
}
}

Example call: 

$sourceimg=GetImg("www.mywebsiteexample.com","/image.jpg");
$sourceimg=strchr($sourceimg,"\r\n\r\n");//removes headers
$sourceimg=ltrim($sourceimg);//remove whitespaces from begin of the string

3.Using CURL

function GetImageFromUrl($link)
 
{
 
$ch = curl_init();
 
curl_setopt($ch, CURLOPT_POST, 0);
 
curl_setopt($ch,CURLOPT_URL,$link);
 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 
$result=curl_exec($ch);
 
curl_close($ch);
 
return $result;
 
}

You should have installed at least  PHP 4.0.2. and libcurl installed to use curl.

Here is a function that will get the source of the image into a string variable:

You can use this code to call the function to get the source of the image:

$sourcecode=GetImageFromUrl("http://domain.com/path/image.jpg");

 

After getting the image from url you should save image from url, doing a simple save to file from  a string variable.

You can use this piece of code:

$savefile = fopen('/home/path/image.jpg', 'w');
fwrite($savefile, $sourcecode);
fclose($savefile);

Download Source Code for Saving Image From Url


Tags: ,
Posted in Codes, PHP/MYSQL | 2 Comments »

Simple Free Mass Mailer Sender PHP

Written by Codes Tips on March 19, 2009 – 2:08 pm -

Why SFMMS?

I just made a simple mass mailer sender in php, which can help you to easily send mass mail to your members. It’s very simple to setup and very useful.

This is a first version of the script, if people will like it, I will make other modify to it.

What is SFMMS?

This is a simple but very usefull Mass Mailer Sender script, that you can use from your server to send mass mails.You can for example use it to send annoncements for your members, that you have an offer for them. You can also use it as mass mailer subscriber to send weekly mails to yours subcribers.

How to install it?

To install SFMMS you should unzip the sfmms.zip to a folder of your choice to your hard disk  and modify the config.php in order to fit to your needs.

$server - it’s the server of your mysql database, which is ussually ‘localhost’

$database - is the name of your database on which your table is stored from the server

$db_user - the user of the database

$db_pass - the password for the user of the database

$fromadmin - email which the users will receive in his email

$table - the table from database where the users are stored

$table_email - the name field for the email of the $table(ex. ‘email’,'Email’)

You can customize the header.php and footer.php to fit with your website.

Upload all the files to a folder from your server.

 

How to use it?

Access http://www.mywebsites.com/folder/massmail.php and put all the details you wanna send to users.

 

Subject - is the subject that will appear in email subject to users.

Message - the message that you will send to users.

Seconds between messages - time to pass between each email that is sent to users(leave it 0.1). This is used when you send lots of messages to not overload smtp server.

Download Simple Free Mass Mailer Sender PHP


Tags: ,
Posted in Codes, PHP/MYSQL, Scripts | No Comments »

Plugintaylor.com - Plugintaylor and Wp Versions