Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any good universal PHP MySQL HTTP tunnel? [closed]

Many Windows MySQL tools like Navicat or EMS have this thing - You just put a PHP file on a shared hosting and can connect local running program to the remote MySQL server on the Web via the web service exposed by that php file.

Are there any good popular free solutions to expose full MySQL as a web service using PHP?

like image 988
Ivan Avatar asked May 22 '10 23:05

Ivan


People also ask

Does PHP only work with MySQL?

Of course you can run PHP without MySQL but if you wanted to store data you would probably want a database engine if not SQLite. It's also more than possible to skip using any SQL-oriented database and instead utilize .


1 Answers

I have build a MySQLTunnel script in PHP, and put it in sourceforge. You can download it and try. It supports:

  • HTTP Tunneling to MySQL
  • JSON Resultset
  • On-demand compression to preserve bandwidth
  • On-demand encryption using AES-128 or AES-256 to preserve secure data and password
  • Supports both http:// and https://
  • Written in PHP can be installed on any LAMP or WAMP stack
  • Fast and secure communication

Here you can find it

Hope it helps

like image 165
Athanasios Alekizoglou Avatar answered Sep 28 '22 06:09

Athanasios Alekizoglou