Search results

  1. S

    From a folder public_html all data has disappeared

    Good day, i have some trouble.This morning i have come on my site(gryppa.x10hosting.com) and i saw ... all data from folder public_html was dissapeared :confused:...What happened?
  2. S

    error in MySQL

    ohh..i have new error :) <? $dbname="saiman_test"; mysql_select_db ("$dbname") or exit(mysql_error()); //Access denied for user 'saiman_root'@'74.63.233.5' to database 'saiman_test' $string=$_POST['string']; if (!empty($string)) { mysql_query("INSERT INTO test(phrase)...
  3. S

    error in MySQL

    ohh,i see error No database selected it's mean what i selected incorrect name database... why i can't come into phpmyadmin?(
  4. S

    error in MySQL

    hmm...i choose mysql_login=saiman_root ! it's correct data
  5. S

    error in MySQL

    i corrected connect.php $mysql_host="localhost"; $mysql_login="saiman_root"; $mysql_password="************"; $my_database="saiman_test"; $link = mysql_connect("$mysql_host", "$mysql_login", "$mysql_password") or die ("Could not connect to MySQL"); but all the same i see error =(
  6. S

    error in MySQL

    Good day for all, i have some question about MySQL database.. i have code <? include "connect.php";?> <? mysql_select_db ("$my_database"); $string=$_POST['string']; if (!empty($string)) { mysql_query("INSERT INTO test(phrase) VALUE('$string')"); } ?>...
  7. S

    how to use php code in html page?

    path to phptest public_html/phptest .... i copy .htaccess iin folder "phptest", but when i write path in address line,i see this
  8. S

    how to use php code in html page?

    i write this line in file,and...nothing i make folder gryppa.x10hosting.com/phptest/ with two files: test.html and test.php Their text.. <?php echo "Test"; ?> test.php - work test.html - Doesn't work :dunno:What to do? (
  9. S

    how to use php code in html page?

    It is good thought,but i have many pages and in them there are references to other pages:sad:maybe can be more simple way? I read that it is possible to do so, having written in .htaccess but isn't working
  10. S

    how to use php code in html page?

    Good day for all,i have one question.I have html pages with php-code,but php don't execute.How I can correct it?
Top