Question
my mysql dw database works on local but not remote
i have been working on this address book record set using
mysql and dreamweaver for days now . it works fine on my local pc
but not on the remote server. when i enter info and then hit the
submit button i get this error: error 404 Not Found
The requested URL /mysite/< was not found on this server.
and my address book is empty and doesnt even look like its supposed to,
so im assuming i have a connection problem.
here is what is in my connection folder on remote site, maybe someone can tell me im missing something?:
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_mydata = "localhost";
$database_mydata = "mydatabase";
$username_mydata = "xxxxxxx";
$password_mydata = "xxxxxxxx";
$mydata = mysql_pconnect($hostname_mydata, $username_mydata, $password_mydata) or trigger_error(mysql_error(),E_USER_ERROR);
?>
The requested URL /mysite/< was not found on this server.
and my address book is empty and doesnt even look like its supposed to,
so im assuming i have a connection problem.
here is what is in my connection folder on remote site, maybe someone can tell me im missing something?:
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_mydata = "localhost";
$database_mydata = "mydatabase";
$username_mydata = "xxxxxxx";
$password_mydata = "xxxxxxxx";
$mydata = mysql_pconnect($hostname_mydata, $username_mydata, $password_mydata) or trigger_error(mysql_error(),E_USER_ERROR);
?>
