Posts
 
Reputation
Joined
Last Seen
Ranked #378
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
95% Quality Score
Upvotes Received
24
Posts with Upvotes
21
Upvoting Members
10
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
5 Commented Posts
0 Endorsements
Ranked #2K
~47.6K People Reached
Favorite Tags
Member Avatar for anshsachdeva

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 project. @rproffitt gave you very sound advice on drawing up specs. Whether in house or outsourced, you need a blueprint …

Member Avatar for bravomorris9
0
403
Member Avatar for Adhri
Member Avatar for Nuel
Member Avatar for Bert Pitt
0
1K
Member Avatar for webinvest
Member Avatar for Charles_38
Member Avatar for Ritesh_4

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 the previous version which is why you are able to roll back. All you really have to do is delete …

Member Avatar for Ritesh_4
1
1K
Member Avatar for Robert_79
Member Avatar for alan.davies
0
452
Member Avatar for gdi888

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
0
303
Member Avatar for Peter_68

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
0
3K
Member Avatar for HAMMAD_5

> 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 rproffitt
0
644
Member Avatar for davy_yg

The answer is simple. You just need to disable the foreign key checks first, run your querys, then turn the foreign key checks back on. SET FOREIGN_KEY_CHECKS=0; //Run Querys SET FOREIGN_KEY_CHECKS=1;

Member Avatar for davy_yg
1
2K
Member Avatar for mexabet

>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 mexabet
0
378
Member Avatar for Jessica_16
Member Avatar for Jessica_16
0
1K
Member Avatar for Sana'a_1

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 Sana'a_1
0
392
Member Avatar for arnold_5

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
0
192
Member Avatar for Marco_5

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 from, toss it!

Member Avatar for benanamen
0
338
Member Avatar for random_1
Member Avatar for AndrisP
0
237
Member Avatar for thomas_43

Your DB design is incorrect. You need to learn about *Database Normalization*.

Member Avatar for benanamen
0
307
Member Avatar for random_1
Member Avatar for random_1

There are numerous issues with your code. You need to check the request method. Depending on the name of a button being submitted in order for your script to work will completetly fail in certain cases. Get rid of the try/catch blocks. Php is perfectly capable of handling errors. Do …

Member Avatar for random_1
0
444
Member Avatar for COKEDUDE

For starters, you are using dangerous obsolete code that has been completetly removed from Php. You need to use PDO. [Click Here](https://phpdelusions.net/pdo) Second, that "code" is not going to do anything. You dont even have variables where you should have them. Additionally, the "logic" just makes no sense at all.

Member Avatar for AssertNull
0
416
Member Avatar for Tom_26

Being that their own server has numerous basic security issues and is vulnerable to a Clickjacking Attack, I would stay away from them.

Member Avatar for benanamen
0
267
Member Avatar for wikit

This is a very poorly written and insecure script that is vulnerable to SQL Injection. Before you start adding new features you need to fix the script. There are numerous problems with it. You need to use Prepared Statements. I suggest you use [PDO](https://phpdelusions.net/pdo). Do not output internal errors to …

Member Avatar for benanamen
0
438
Member Avatar for navjot_2

You are using obsolete and dangerous code that has been completetly removed from Php. You need to use PDO with prepared statements. [PDO Tutorial](https://phpdelusions.net/pdo) Never ever put variables in a query. Do not output internal system messages the user. That info is only good to hackers. Having the test id …

Member Avatar for benanamen
0
351
Member Avatar for nicholas1981

@sriram_2, you revived a SIX YEAR OLD thread to post severely flawed and **VERY DANGEROUS CODE**? I am not even going to get into everything wrong with what you posted. You need to do a lot more learning before you post a wall of code to "help".

Member Avatar for benanamen
-2
3K
Member Avatar for Jack_30

Just to be more precise, it is not a "one way encrypted password" but a "one-way hashing algorithm using "[password_hash](http://php.net/manual/en/function.password-hash.php). Per the manual: > password_hash() creates a new password hash using a strong one-way hashing algorithm. You would then use [password_verify](http://php.net/manual/en/function.password-verify.php) to "Verify that the given hash matches the given …

Member Avatar for benanamen
0
562
Member Avatar for Charles_25

Where does this data originate from? Is there some reason you are not using a database? Is everthing between underscores a seperate serial number?

Member Avatar for happygeek
0
1K
Member Avatar for Charles_25

I believe this question may be part of this thread [Click Here](https://www.daniweb.com/programming/web-development/threads/510335/php-regex-remove-all-words-that-do-not-occur-exactly-3-or-1-time)

Member Avatar for benanamen
0
638
Member Avatar for masimies

I also have no idea what you want. Rather than talk about your attempt at solving the problem, explain to us the big picture of what you are doing,

Member Avatar for benanamen
0
318
Member Avatar for random_1
Member Avatar for benanamen
0
346