Thanks,
With all the complications I went through I dropped the database and created new one without foreign keys that too was part of complication and I stuck to innoDB engine which was another source of troubles.
Thanks
Hi everyone,
This is the code to create a new table:
CREATE TABLE melClans (
id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
KEY (id)
);]
This is an error message I get in response to creating table with the above code:
#1813 - Tablespace for table...
Thanks,
unnecessary semicooln was illcopied, sorry for that.
Even though your code yielded error message it works !
I use "UNION" alone on tables that have INDEXES attached and it works ! Table with "KEY" column and with no accompanied INDEX "UNION" alone doesn't work but your suggestion made it...
Hello everyone,
Here is code to create table named 'abcd'/
USE skullcrashingwords;
DROP TABLE IF EXISTS abcd;
CREATE TABLE abcd(
ID INT AUTO_INCREMENT,
Name VARCHAR(255) not null collate utf8_unicode_ci,
KEY (ID)
);
INSERT INTO abcd(name)
SELECT 'aaaaa';
When I run this code a new abcd...
I get the following error:
h1>Failed to read configuration file</h1>This usually means there is a syntax error in it, please check any errors shown below.<br /><br /><iframe src="show_config_errors.php" />
Package installed at c:\xampp
Anyone can tell me what is it all about?
Thanka
Hi everyone,
I have a form in "test.php" which I want to process in "test1.php".
test.php is the following:
<!DOCTYPE html>
<html>
<head>
<title>Update Records In MYSQL Database Using PHP</title>
</head>
<body>
<!--connecting to database-->
<table>
<tr>
<th>ID</th>...
Thank you so much Olaf Doschke,
undoubtedly what is my intention is more clear to you the to myself since I'm still searching for how to do it right.
I'll read again both your posts and maybe I'll end up by understanding how to do it :-)
I'm becoming sloppy when it comes to not understanding why things do not work :-(
Here again is the code of "test.php" the way it should have been posted:
<!DOCTYPE html>
<html>
<head>
<title>Update Records In MYSQL Database Using PHP</title>
</head>
<body>
<!--connecting to database-->...
Hi everyone,
It seems I dont understand the mechanism of sending a parameter from one PHP procedure to another.
Here is the code of the main procedure test.php:
<!DOCTYPE html>
<html>
<head>
<title>Update Records In MYSQL Database Using PHP</title>
</head>
<body>
<!--connecting to...
Hi everyone,
Only now I noticed my post has became such nuisance and I'm so sorry it turned out to be such.
I wanted to delete it and didn't find the way to do it maybe becauseof the confusion caused by the code I try to create.
I did ask about "value's" value showing partially but then found...
Hi everyone,
The following is a PHP code to edit a line in a MySQL table.
Lots of things do not work in this code. To start with is the following warning message I get when start running it:
"Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.