Search found 1 match

by aber10
Tue Mar 12, 2019 11:54 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Connecting to remote MySQL Database via 3g 4g problem
Replies: 5
Views: 6548

Re: Connecting to remote MySQL Database via 3g 4g problem

If I open up a cmd shell and run

>mysql --host=12.34.56.78 --port=1234 --user=myuser --password=mypassword mydb
I can successfully connect to the remote mysql database.

But if I create a php page on my localhost containing

<?php
$hostname = "12.34.56.78:1234";
$username = "myuser";
$password ...