私はここが初めてで、これが私の最初の質問です! mysql と php で問題が発生しています
<?php
echo "Hello World";
$con=mysql_connect('localhost:3306','dmail','*****','dhruv');
if(!$con)
{
echo "Failed to connect"; }
$name2 = 'name2';
$tel_no2 = 'tel_no2';
$email2 = 'email2';
$query2 = 'query2';
$car = 'car';
$city2 = 'city2';
$country2 = 'country2';
$date = 'date';
$query1 ="INSERT INTO 'booking' VALUES (name2, tel_no2, email2, city2, country2, car, date, query2)";
$query2 ="INSERT INTO 'booking' VALUES ('$name2', '$tel_no2', '$email2', '$city2', '$country2', '$car', '$date', '$query2')";
$update = mysql_query($query1,$con);
if(!$update)
{ echo "Failed to update"; }
>
常に「更新に失敗しました」と表示されます。どんな助けでも大歓迎です。ありがとう。