d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Php Madlib Project
Add Reply New Topic New Poll
Member
Posts: 10,803
Joined: Apr 5 2010
Gold: 20.00
Sep 25 2016 07:37pm
what does it mean if i get the green when i fillout all 4 of the input boxes and hit submit.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Make Me Elvis - Add Email</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>

<?php
$dbc = mysqli_connect('localhost', 'root', '', 'madlib')
or die('Error connecting to MySQL server.');

$noun = $_POST['$noun'];
$verb = $_POST['verb'];
$adjective = $_POST['$adjective'];
$adverb = $_POST['$adverb'];

$query = "INSERT INTO madlib (noun, verb, adjective, adverb) VALUES ('$noun', '$verb', '$adjective' '$adverb')";
mysqli_query($dbc, $query)
or die('Error querying database.');

echo 'Customer added.';

mysqli_close($dbc);
?>

</body>
</html>
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Sep 25 2016 08:13pm
Quote
what does it mean if i get the green when i fillout all 4 of the input boxes and hit submit.


i suppose it's better than getting the finger, but what green are you referring to? are you getting an error? if so, post it
Member
Posts: 10,803
Joined: Apr 5 2010
Gold: 20.00
Sep 26 2016 09:43am
Quote (carteblanche @ Sep 25 2016 09:13pm)
i suppose it's better than getting the finger, but what green are you referring to? are you getting an error? if so, post it


i was refering to the query line


$query = "INSERT INTO madlib (noun, verb, adjective, adverb) VALUES ('$noun', '$verb', '$adjective' '$adverb')";
mysqli_query($dbc, $query)
or die('Error querying database.');

and i found out i made a typo creating my table
Member
Posts: 29,723
Joined: Jun 11 2007
Gold: 279.52
Sep 28 2016 04:07pm
that db query makes no sense...
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll