sosojenn Posted July 5, 2007 Share Posted July 5, 2007 Hi everybody I'm new to PHP and so I hope I can explain this well. I've been given the task of updating a company's website and the previous IT person uses PHP on the website. There is a page on the site that I need to edit the content...I noticed that the url ends with: ?str=501 Now how exactly do I go and edit that "501" string? I've noticed the other pages have different numbers for the strings.....I can't seem to find a file with the actual web content. Can someone please explain this to me? Thanks! Link to comment https://forums.phpfreaks.com/topic/58574-editing-sessions/ Share on other sites More sharing options...
xyn Posted July 5, 2007 Share Posted July 5, 2007 basically you'll find the page is. page.php?str=501 now str will be a $_GET; You will have to look for a page with $_GET['str']; you will more than likely notice and if statement... or even a case. Link to comment https://forums.phpfreaks.com/topic/58574-editing-sessions/#findComment-290549 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.