Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Nice Profile URL? Re: Nice Profile URL?

#96029
bungle
Member

I can’t see any reason for it being there.

Also you need to sanitize your get variables to prevent SQL injection

so the line that reads

$id = $_GET[“id”];

needs to become

$id = mysql_real_escape_string($_GET[“id”]);

or you are leaving yourself wide open when $id gets used in a query.