PHP interesse |
|
Als ik de volgende query wil uitvoeren:
<?
function addNewFav($name, $page) {
mysql_query("INSERT INTO `homenet_fav` (`id`, `user`, `page`, `name`) VALUES ('', '1', 'test', '12'); ") or die (mysql_error());
header("location: index.php?pid=".$page);
}
?>
<? function addNewFav($name, $page) { mysql_query("INSERT INTO `homenet_fav` (`id`, `user`, `page`, `name`) VALUES ('', '1', 'test', '12'); ") or die (mysql_error()); header("location: index.php?pid=".$page); } ?>
Krijg ik de volgende fout:
Warning: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /home/site5/web/franchise/lib/func.mysqlQuerys.php on line 3
Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /home/site5/web/franchise/lib/func.mysqlQuerys.php on line 3
Warning: MySQL: A link to the server could not be established in /home/site5/web/franchise/lib/func.mysqlQuerys.php on line 3
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
Warning: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /home/site5/web/franchise/lib/func.mysqlQuerys.php on line 3 Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /home /site5 /web /franchise /lib /func .mysqlQuerys .php on line 3 Warning : MySQL: A link to the server could not be established in /home /site5 /web /franchise /lib /func .mysqlQuerys .php on line 3Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
Als ik die query gewoon uitvoer met phpmyadmin, dan doet ie het gewoon (exact dezelfde query)...
Het bestand waar de query wordt uitgevoerd wordt geinclude in een configbestand, welke weer geinclude wordt in de index... waar hij uitgevoerd wordt na een $_POST['']:
<?
if ($_POST['newFavNaam']) {
addNewFav($_POST['newFavNaam'], $_GET['pid']);
}
?>
<? if ($_POST['newFavNaam']) { addNewFav($_POST['newFavNaam'], $_GET['pid']); } ?>
Iemand ooit die fout gehad en enig idee hoe dit op te lossen is?
Groet, Barry
|