Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lupidol

    Cannot create new table in mySQL

    Thanks a lot . Your aid was very enlightening !
  2. lupidol

    Cannot create new table in mySQL

    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
  3. lupidol

    Cannot create new table in mySQL

    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...
  4. lupidol

    mysql cannot add rows with "UNION"

    How do I specify collation ?
  5. lupidol

    mysql cannot add rows with "UNION"

    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...
  6. lupidol

    mysql cannot add rows with "UNION"

    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...
  7. lupidol

    Installing XAMPP. Connecting phpMyAdmin

    Thanks, I downloaded a different XAMPP installation file and the error message doesnt appear anymore.-
  8. lupidol

    Installing XAMPP. Connecting phpMyAdmin

    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
  9. lupidol

    Table's title row's rounded corners border

    Thanks a lot Feherke ! Title header is exactly what I want as for the rest of the table's borders, I'll try to see if I can make progress.
  10. lupidol

    Table's title row's rounded corners border

    Hi everyone Here is my table's css disign: <!DOCTYPE html> <html> <head> <title>To forum</title> <style> table { width: 80%; margin: auto; border-collapse: collapse; } tr.title { border-radius: 15px 15px 0px 0px; border: 3px solid #6b8e23;; }...
  11. lupidol

    Can I set $_GET[] without &quot;Submit&quot;?

    Thank you so much Olaf for allocating of your time to make things clearer for me. I'll do as you suggested.
  12. lupidol

    Can I set $_GET[] without &quot;Submit&quot;?

    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>...
  13. lupidol

    PHP Sending parameter to sub procedure

    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 :-)
  14. lupidol

    PHP Sending parameter to sub procedure

    I changed to: echo $_GET["edit_task"]; A mentioned above and it worked ! Thanks a lot !
  15. lupidol

    PHP Sending parameter to sub procedure

    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-->...
  16. lupidol

    PHP Sending parameter to sub procedure

    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...
  17. lupidol

    &quot;Input&quot; box in a &quot;Form&quot; shows partial value inserted in &quot;value&quot; attrib

    Thanks ChristHirst, I see it now but for some reason I couldn't see it when I needed it...
  18. lupidol

    &quot;Input&quot; box in a &quot;Form&quot; shows partial value inserted in &quot;value&quot; attrib

    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...
  19. lupidol

    PHP editing value doesn't fully shows the original value

    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...
  20. lupidol

    Confirmation dialog box

    Thank you Phil

Part and Inventory Search

Back
Top