mySQL insert wont update database

mickzer

I have a form that sends data to the php below. No errors appear but no information is inserted into the database and I don't understand why. I have triple checked all the table names etc and everything is correct. The code echo's out what I put into the form but it doesn't update to the database!

<?php
    //variables for db
    $username = "";
    $password = "";
    $hostname = "localhost"; 
    $dbname = "infinity";

    //connection to the database
    $con = mysql_connect($hostname, $username, $password);

    if($con == FALSE)
    {
        echo 'Cannot connect to database' . mysql_error();
    }

    mysql_select_db($dbname, $con);

    $name=$_POST["name"]; 
    $logo=$_POST["logo"]; 
    $logo="<img src=\"images/".$logo."\" alt=\"$name Logo\" />";
    $blurb=$_POST["blurb"]; 
    $link=$_POST["link"]; 
    echo $name;
    echo $logo;
    echo $blurb;
    echo $link;
    //Insert Values into Database
    mysql_query("INSERT INTO `infinity`.`sponsors` (`name`, `logo`, `blurb`, `link`) VALUES ('$name', '$logo', '$blurb', '$link');");   
?>  
Ellis

Try to get an error message of you query:

mysql_query($your_query) OR die(mysql_error());

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

PHP MySQL Insert database

分類Dev

Insert image into MySQL database

分類Dev

Mysql Insert date in a database

分類Dev

Insert and update a datetime into SQL database

分類Dev

Update MySQL table after INSERT

分類Dev

How to insert an image to the mysql database

分類Dev

Is there a non database-specific command for "insert or update"

分類Dev

Mysql INSERT INTO ... SELECT .... ON DUPLICATE KEY UPDATE

分類Dev

Most efficient way to insert Rows into MySQL Database

分類Dev

Insert into mysql database using case statement

分類Dev

Multiple checkbox database insert with mysql prepare

分類Dev

how to update database using php,mysql

分類Dev

Update query for java JDBC +mysql database

分類Dev

Send push notification to Android app after database insert or update

分類Dev

Why wont this MySQL Query save

分類Dev

Angular Material Dialog panelClass Wont Update

分類Dev

Mouse event wont update camera rotation in winforms

分類Dev

mysql insert on duplicate key update, check which one occurred

分類Dev

Mysql insert on duplicate key update and delete if key not exists

分類Dev

Is there a way to insert an auto-incremental primary id with a prefix in mysql database?

分類Dev

How to insert particular element of json data in mysql database

分類Dev

How to insert multiple, increasing by 1, rows to mysql database with php

分類Dev

php script wont add record to mysql

分類Dev

How to use ajax to update label from count from mysql database

分類Dev

Edit SQL Server Database (INSERT, UPDATE, etc) in ASP.NET (VB)

分類Dev

Realm order of insert or update

分類Dev

Insert POINT into postgres database

分類Dev

Update \ Insertデータをgrafanaからmysqlに

分類Dev

MySQL-存在する場合はUPDATEまたはINSERT

Related 関連記事

  1. 1

    PHP MySQL Insert database

  2. 2

    Insert image into MySQL database

  3. 3

    Mysql Insert date in a database

  4. 4

    Insert and update a datetime into SQL database

  5. 5

    Update MySQL table after INSERT

  6. 6

    How to insert an image to the mysql database

  7. 7

    Is there a non database-specific command for "insert or update"

  8. 8

    Mysql INSERT INTO ... SELECT .... ON DUPLICATE KEY UPDATE

  9. 9

    Most efficient way to insert Rows into MySQL Database

  10. 10

    Insert into mysql database using case statement

  11. 11

    Multiple checkbox database insert with mysql prepare

  12. 12

    how to update database using php,mysql

  13. 13

    Update query for java JDBC +mysql database

  14. 14

    Send push notification to Android app after database insert or update

  15. 15

    Why wont this MySQL Query save

  16. 16

    Angular Material Dialog panelClass Wont Update

  17. 17

    Mouse event wont update camera rotation in winforms

  18. 18

    mysql insert on duplicate key update, check which one occurred

  19. 19

    Mysql insert on duplicate key update and delete if key not exists

  20. 20

    Is there a way to insert an auto-incremental primary id with a prefix in mysql database?

  21. 21

    How to insert particular element of json data in mysql database

  22. 22

    How to insert multiple, increasing by 1, rows to mysql database with php

  23. 23

    php script wont add record to mysql

  24. 24

    How to use ajax to update label from count from mysql database

  25. 25

    Edit SQL Server Database (INSERT, UPDATE, etc) in ASP.NET (VB)

  26. 26

    Realm order of insert or update

  27. 27

    Insert POINT into postgres database

  28. 28

    Update \ Insertデータをgrafanaからmysqlに

  29. 29

    MySQL-存在する場合はUPDATEまたはINSERT

ホットタグ

アーカイブ