I have a search program for a MySQL database that is returning from the search.php page an embeded querystring to my display page. I have been reading and trying html and php code for days trying to get the querystring to display in some type of readable and printable format.
The config.php line is this:$database[0]['url'] = "http://something.com/recipe.php?id='@0@', '@1@'";
Where @0@, etc represents the return field data from the database and the 'search_results.php is the page where the data will be displayed after it is selected from a search.php page.
The source code posted to the search. php for a result looks like this: HREF=//something.com/recipe.php?id='Red%20Sauce',%20'Chili%20Powder'" TARGET="_self">Red Chili Sauce</a></b>
When the linked recipe title is selected on the results page it is sent to the recipe.php page. However I cannot get the data in a readable text format displayed on the page. The browser address window shows: http://something.com//recipe.php?id='REd%20Sauce',%20'Chili%20Powder'
I guess I am just dumb since I have read the PHP Manual from front to back and still cannot find a solution.
Is there sanity here? lol