Hello, Please help me finish this last piece of my puzzle. I am a novice coder. I have two buttons linked to add a restaurant listing and then update their listing. I set the databases up correctly using the tutorial HERE .
Now I want to link the update button to my dynamic page link [(www.kalamazoomenu.com/ownersProfiles/Update/{restaurantName}]((www.kalamazoomenu.com/ownersProfiles/Update/{restaurantName}) I want this code to pull that information from the original dataset and then link correctly. All I get is a 404 error code. How can I fix this? It’s supposed to launch Monday! HELP PLEASE.
Hi! I can see that all of your URL is actually a string, as the restaurantName variable is not separated by the ’ symbol. Therefore, the URL that you’re trying to access currently looks like this:
www.mywixsite.com/ownersprofile/Update/+restaurantName
I assume that you would like the +restaurantName part to be replaced with a variable value.
Try doing this instead:
’ /ownersprofiles/Update/ ’ + restaurantName