Okay so I need to update a page on a company's website.
When I went to the html file I see that it's calling the php page....so I go to the php file and I see that the webpage content is not actually on that file and that it has a bunch of this:
if ($REQUEST['str']){
$SESSION['str'] = $REQUEST['str'];
}else{
$SESSION['str'] = "501";
}
Now I see that the page is a string that must be on the MYSQL database right?
Well when I access that database I don't see any way to edit the webpage content....
can someone explain to me exactly how this works?
All I need to do is edit some text on the page and I'm completely lost on how to find that text.
Thanks