-
Content Count
2,016 -
Joined
-
Last visited
-
Days Won
38
benanamen last won the day on December 15 2020
benanamen had the most liked content!
Community Reputation
130 ExcellentAbout benanamen
-
Rank
Master Coder
Contact Methods
-
Website URL
http://galaxyinternet.us/
-
Yahoo
phpfreaks@galaxyinternet.us
Profile Information
-
Gender
Not Telling
-
Interests
Email me at phpfreaks@galaxyinternet.us
-
Yes, stop using shared hosting and get a VPS.
-
As far as file names, what DOES make a difference is underscore and dash to separate words. As simple search proves this out. On google search fast_cars and see returned result count, then try fast-cars. I get 13,000,000 results and 1,600,000,000 respectively Bottom line, use dashes as the separator.
-
Question about using a database connection class
benanamen replied to kenoli's topic in PHP Coding Help
Take a look at my clean-pdo code repo. https://github.com/benanamen/clean-pdo -
Your code is vulnerable to an SQL Injection Attack. You need to use Prepared Statements. NEVER EVER PUT VARIABLES IN YOUR QUERY
-
The form data is in the POST array which you do nothing with. Besides that, this code will be vulnerable to an Email Header Injection Attack if it were to work.
-
Oh, so your a Domain Squatter. 🚩🚩
-
Moving some PHP to the backend without a button press or anything
benanamen replied to JoshEir's topic in PHP Coding Help
The break tag (br) by no means goes anywhere within a Select element. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select -
How about giving us a high level overview of what you have going on and the real problem you are trying to solve by doing this.
-
You might want to tell us exactly what that error is. We cant see your screen and you posted incomplete code. What you did post is wide open to an SQL Injection Attack. You need to use Prepared Statements.
-
When you are done, post a sql dump of your db tables and we will review it for you.
-
Here's what I would suggest.. Back up your DB and Code-base Clean up your orphans Add the Foreign Keys Learn and implement cascading update/delete Clean up the unnecessary code You have been doing it "your way" long enough that the difference and time/effort savings will be very apparent. In a nutshell, but some fresh eyes on it and just try it. There really isn't much more to say about it. * I am assuming your DB is already normalized. If not, now is the time to fix it.
-
Sounds like someone hasn't set unique indexes on the relevant DB columns.
-
Sure, if you can tell me why the obsession with resetting the auto-increment. I will go first to save a post.... #1 reason to use Foreign Keys is to enforce Data Integrity. You can try and manage it yourself but if you get it wrong you will end up with orphan records (Bad Data). Wouldn't surprise me at all if you already have orphans. As soon as you try to set the FK's you will know right away if you do. It also clearly defines the links between tables (That would be the R in RDMS, Relational, AKA Relationships) Then you didn't learn how to do it. It is not complicated and is
-
Navicat saves query's within itself as part of the program. Based on the additional info you provided, there is no reason whatsoever to reset the auto-increment. And as I already said, once you start creating a real relational DB with keys you wont be able to do it anyways. If you actually want to be able to call a "saved" query at will from the DB will you will need a stored procedure or run the saved query in Navicat which actually is a "saved" query.
-
Well, there is an hour of my life I am never getting back. Why do I even bother?