Jump to content

jaymc

Members
  • Posts

    1,521
  • Joined

  • Last visited

    Never

Everything posted by jaymc

  1. To cut a long story short I need to display text as an image Obviously this can be done using phps image library but the reason I need to do this is so I can display the text as CMYK, not RGB So my question is, how can I accomplish creating the output image as CMYK?
  2. jaymc

    CMS PHP

    Im creating a CMS system to run multiple websites. The content and templates are all stored in a mysql database and the only use of files is for the php code/classes that generates the pages. The problem I have is some of the pages generated from the CMS must allow for dynamic output hence I will need the use of PHP. I know eval() can execute data e.g straight from a mysql database but that would pretty much allow a user to have some serious access to the system. Can anyone think of a better solution? It would be good if I could use eval() alongside some good security limitations that stopped them from using certain functions related to reading files / delete functions.
  3. Does anyone know of a free API to lookup a UK postcode and return street, city, town etc..
  4. I have wrote quite a lot of user login applications however I would like to double check something with some of the great minds to validate whether a member is logged in (hence has access to membership pages) I have always used the below code if (!isset($_SESSION['memberID'])) { die('Please login'); } That seems good to me based on the only way $_SESSION['memberID'] can be set is by going through the login process which of course requires valid username/password Is that how you guys do it? Is my way safe?
  5. jaymc

    wysiwyg

    Yes similar, but more aimed at sitting over the top of a textarea which contains html
  6. jaymc

    wysiwyg

    Im building a CMS (content management system) for my customers to manage their website I use http://ckeditor.com/demo to control the page content which for me is great, but then again i 9 times out of 10 go into raw source code view and make the changes that way. However, the type of people that will be using it to edit and add content/pages are not web designers. Their experience in this type of thing starts and ends with the likes of Microsoft Word / Publisher. Mainly click and drag type approach In other words, very simple things like aligning elements left and right with maybe something in the centre to, with text wrapped around it is not so easy even with a wysiwyg Is there any other framework out there that can be plugged into a textarea and give them easy and flexiable control of content and designing pages. Microsoft publisher is as close as I can give as an example. You literally just drag and drop elements which allows you pin point precision on how your page will look, even if your a novice.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.