Hi All
Working on a site and run into an interesting problem. in my code I have a link to a delete.php page.
What's funky is that when I click the link, the relative path is and I get a 404 (page not found error)
If I manually type http://www.sitename.ca/delete.php?id=1 then the delete works...
How can I resolve this?
Bastien
I wish my computer would do what I want it to do,
instead of what I tell it to do...
Working on a site and run into an interesting problem. in my code I have a link to a delete.php page.
Code:
$sHTML .= "<a href='delete.php?id=".$rows['file_id']."'>Delete File</a></td>";
What's funky is that when I click the link, the relative path is and I get a 404 (page not found error)
If I manually type http://www.sitename.ca/delete.php?id=1 then the delete works...
How can I resolve this?
Bastien
I wish my computer would do what I want it to do,
instead of what I tell it to do...