• Member Avatar for benanamen
    benanamen

    Replied To a Post in What to choose Inhouse or outsourcing software development?

    Should you decide to outsource, I am available. I am a Senior Software Engineer with over thirty years experience. Just send me a message if you want to discuss your …
  • Member Avatar for benanamen
    benanamen

    Began Watching What to choose Inhouse or outsourcing software development?

    Hello Friends, I don't whether it's the right place to ask this question or not. Apologies if it's not the right place. I and two of my friends are working …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in What is the right way to do this

    Look up "Database Normalization" and then apply what you learned.
  • Member Avatar for benanamen
    benanamen

    Began Watching What is the right way to do this

    I have table i wish to count how many times a value appears in all column the table structure id Subject1 Subject1score subject1grade Subject2 Subject2score subject2grade 1 English 100 A …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Update not working

    Feel free to ask a question.
  • Member Avatar for benanamen
    benanamen

    Began Watching Update not working

    <html> <head></head> <link rel="stylesheet" type="text/css" href="style.css" <body> <?php $db = mysqli_connect('localhost', 'root', '', 'formdb'); $formId = ''; $LastName = ''; $FirstName = ''; $Email = ''; $Birthday = ''; $Birthplace …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Insert into not working in my php code

    @Dani, I should have added the word "page" which is what I meant. Tabular data is perfectly fine and is exactly what tables should be used for. But with that …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Insert into not working in my php code

    Tables for layout went out in the 90's. We use CSS now.
  • Member Avatar for benanamen
    benanamen

    Began Watching Insert into not working in my php code

    Signup.php <form name="sign-up" method="post" action="process.php?action=sign-up"> <h3><span>Sign-Up</span></h3> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <thead> User Details </thead> <tr> <th scope="row">*User ID :</th> <td><label for="playerid"></label> <input type="text" name="playerid" id="playerid" required="required"></td> </tr> <tr> <th …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Clean install Windows 10 on a PC downgraded to Windows 7 (Pro)

    Having vms for software testing or whatever else is a great option. Once you have a clean install of an OS on VM, take a snapshot, then install whatever you …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Clean install Windows 10 on a PC downgraded to Windows 7 (Pro)

    While not a bad idea to do the second clean install the upgrade is smart enough to put all the "crap" in a folder called windows.old which has everything from …
  • Member Avatar for benanamen
    benanamen

    Began Watching Clean install Windows 10 on a PC downgraded to Windows 7 (Pro)

    Hello, I have a PC at the office, which was by default a Windows 8 Pro OEM licensed one (not 8.1), but for some unknown reasons, it was downgraded to …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Displaying records from database using enum

    Didnt you like the answers on all the other forums you cross posted on?
  • Member Avatar for benanamen
    benanamen

    Began Watching Displaying records from database using enum

    Hi I am struggling with some code and was wondering any someone could please help me. My php skills are VERY limited and only get stuff done by reading forums …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in can't insert into my memberships table and trying to implode as well

    As you have been told by many on the other forum you crossposted on, you need to fix your Database before you do anything.
  • Member Avatar for benanamen
    benanamen

    Began Watching can't insert into my memberships table and trying to implode as well

    `Hey guys!` For the past few days, my database was working fine for both tables but just recently (I must have done something to my code but can't remember), my …
  • Member Avatar for benanamen
    benanamen

    Gave Reputation to 3.15127E+11 in undefined index username and password

    this is my html code <html> <head> <h1 align=center>LOGIN PAGE</h1> </head> <body align=center> <div align=center> <form method="post" action="welcome.php" > <label>USERNAME</label> <input type="text" value=""></input> <br><br> <label>PASSWORD</label> <input type="password" value=""></input><br><br> <input type="submit" …
  • Member Avatar for benanamen
    benanamen

    Gave Reputation to Rakesh_13 in Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given

    My Code: <?php include("validation.php"); include("conection.php"); if(isset($_POST["button"])) $pwde = md5($_POST[password]); $sql="INSERT INTO administrator (adminid, adminname, password, address, contactno) VALUES ('$_POST[adminid]','$_POST[adminname]','$pwde','$_POST[address]','$_POST[contactno]')"; if (!mysql_query($sql,$con)) die('Error: ' . mysql_error()); else echo "1 record Inserted …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in How to clear form after successful submit using php

    You need to learn about PRG. [Post/Redirect/Get](https://en.wikipedia.org/wiki/Post/Redirect/Get) By the way, PHP_SELF is vulnerable to an XSS Attack.
  • Member Avatar for benanamen
    benanamen

    Began Watching How to clear form after successful submit using php

    Hey guys: I am trying to make this form to clear after being submited. As it is now the form submits, however, the input fields do not clear and when …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Windows 10 update ruin my computer

    > some error appears everytime It would have helped if you would have told us exactly what the error is. We dont have magic Crystal Balls.
  • Member Avatar for benanamen
    benanamen

    Began Watching Windows 10 update ruin my computer

    It seems Microsoft new update ruined my pc.once I click on start some error appears everytime
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in copy data from one database to another

    Writing a proper query would be helpful. INSERT INTO table2 SELECT * FROM table1 https://dev.mysql.com/doc/refman/5.7/en/insert-select.html
  • Member Avatar for benanamen
    benanamen

    Began Watching copy data from one database to another

    Hi, I'm trying to copy the data from a table in one database to another table (with the same fields of the origin table) in another database. And this is …
  • Member Avatar for benanamen
    benanamen

    Gave Reputation to Dani in Captcha before posting?

    > Their threads may have disappeared but their names (often the name is spam) and their 1-800-BUYSPAM messages were still visible on the front page post-ban. This bug was corrected. …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Automatically sum all the score to a specific rows

    You have bigger problems to worry about. You are using obsolete, dangerous code that has been completetly removed from Php. You need to use PDO with Prepared Statements. [PDO Tutorial](https://phpdelusions.net/pdo)
  • Member Avatar for benanamen
    benanamen

    Began Watching Automatically sum all the score to a specific rows

    **how to automatically sum the scores that is being inputted in the textbox and display to the specific rows of textbox** > this is my code for inputting score while …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in I Need Help to Successfully Create an Online Courseware Database

    >I'm creating an online learning courseware using PHP 5.5 Why? Php 5.5 has already reached end of life and is no longer supported. [Click Here](http://php.net/supported-versions.php)
  • Member Avatar for benanamen
    benanamen

    Began Watching I Need Help to Successfully Create an Online Courseware Database

    I'm creating an online learning courseware using PHP 5.5 and connecting via PDO. But I'm confused as to how to get the courseware to work, as I want. This is …
  • Member Avatar for benanamen
    benanamen

    Replied To a Post in Textarea to mysql HELP URGENT

    You first need to start with code that is not dangerous and obsolete and removed from Php. Start with this tutorial [Click Here](https://phpdelusions.net/pdo) Where ever you are learning that code …

The End.