Am cumparat domeniu/hosting si vreau sa incerc sa fac un tabel. Nu reusesc sa bag date intr-un tabel. Am creeat un php simplu sa vad daca merge si nu reusesc.
<?php
include ("auth.php");
$connect = mysql_connect ($host_name, $user_name, $host_password);
if(!$connect) {
echo "Nu m-am conectat";
}
mysql_select_db($db_name);
$sql = "INSERT INTO $program ('nr' , 'F1', 'F2', 'F3', 'F4', 'F5', 'F6', 'Liber1', 'Liber2', 'data') VALUES (NULL , 'tata' , 'buni' , 'profa' , 'mama' , '' , '' , '' , '' , '')";
?>
Codul de mai sus nu imi introduce nimic in tabel.
