I am making an admin page that modifies other pages on the site.

I'd really just like some feedback on my logic as I'm stuck and am still a beginner.

Ok so the page I made modifies the Links page of our site (A page with a list of important links)

My manager wanted to be able to change the links on this page simply without dealing with code.

I currently have a site that the use can input, Link Title, URL, and then update the links page.

Now on our main page there is also a small section with the 'Top Links' from the link page.

On my Modify Links Page, I have created a check box below each input link area but am now stuck.

How would I write a function that performed this action, or does this logic make sense?


If Checkbox is checked
{
Show on main page
}
else
{
Do nothing
}


I'm sorry if this question is too broad or unclear. Thanks for any help in advance.