tags:

views:

20

answers:

1

Basically I'm building a CMS. In this CMS I have the ability to create pages, and this page is managed elsewhere but on this particular page, all you need to do is give it a title.

Would it be better (security wise) to nest the PHP and then call it upon submission in THIS page, or would it be better to define the code in another sheet and call THAT upon submission?

+1  A: 

calling the self page will be fine for other uses like success message kinda. But there is no difference of submitting it to other page or on self submission for security reason.

Ashay