Search results

  1. freecrm

    php classes?????????

    Thanks for your opinions guys. I'll leave this thread open for a bit until I've done some simple exersizes
  2. freecrm

    php classes?????????

    Now that to me makes sense. Although this may get more complicated the further down this road I go. I'm not doing this for the freecrm site. its for my work site and we manufacture commercial vehicles. As you can guess, there are many types of commercial vehicles and the majority of...
  3. freecrm

    php classes?????????

    tttony - thanks for the input but it explains little! natsuki - its the explanation of the "blah"'s I need as well! vol7ron - this is starting to make sense, but I am still failing to see the advantage over functions or includes, other than it creates multiple instances of the same...
  4. freecrm

    php classes?????????

    I am about to embark on a fairly complex modular specification capture system, revolving around a simple parent table (with ID's) and numerous component child-tables, linking back to the main parent table. The form entry (insert) pages will also have field dependancies. i.e., if one drop-down...
  5. freecrm

    Free php Dynamic Site

    Good point - The index page I think will have to be re-designed with some simple illustrative graphics. The only reason for the lists was trying to improve SEO, but it is very busy!
  6. freecrm

    ' Error

    I suspect that this is as a result of copying and pasting. WYSIWYG Editors like DW automatically convert code when pasted into the design view. If I'm doing work on the core php, I tend to revert back to notepad! No editor should convert simply by opening it though!!! :nuts: You may find...
  7. freecrm

    PDF password submit with PHP

    Firstly, I'm not really clear what you are trying to achieve. If the pdf is password protected, how would a browser get hold of the password? Secondly, if you want to add simple additional security, google ".htaccess" and ".htpasswd" files which can be added simply into the root folder...
  8. freecrm

    help with float:left; attribute

    After a quick look, there is no css defined for the content. Secondly, this is doing exactly what you are telling it to. You're not using absolute positions so... float the image to the left...done THEN comes the content! If you want the main content to float to the left of the...
  9. freecrm

    Css drop down menu

    I prefer pure css solutions in case JS isn't enabled (which 95% of the time it is). A word of warning though with css styling - IE6! very simply a big pain and you need to (or should) build in bug fixes for IE. If you only have browsers using firefox/chrome/opera/anything else - no need...
  10. freecrm

    Explain this code pls

    They are simple queries to a database, but they are returned from a (I think) a class or a function. you will probably find a bit of code above these a bit like.. class Sdocbuild{ function something{ } blah de blah } each class will contain a whole bunch of other...
  11. freecrm

    Free php Dynamic Site

    Sorry - link is embedded into my signature image, but to make life simple www.freecrm.x10hosting.com
  12. freecrm

    Free php Dynamic Site

    Hi all This site has come a long way since I first asked a few months back. I'd be very interested to know what your opinions are on: 1) Ease of use 2) General look and feel 3) Professionalism 4) Current Functionality Link: http://www.freecrm.x10hosting.com If you want to log in, just...
  13. freecrm

    What is the better phbb or mybb ??

    Dunno about the others but I use phpBB3 and it rocks.. See it working on my site.
  14. freecrm

    Css drop down menu

    I have always found this site excellent when trying to create good css techniques - including drop-down menus - which it does for you. www.cssplay.co.uk
  15. freecrm

    help with php

    First off, you already have a form validation topic running at http://forums.x10hosting.com/programming-help/91771-validating-forms-javascript-help-needed.html Simple - just have a bit of code like this at the top of the page (after session_start();) <?php if...
  16. freecrm

    PHP - Help With Friends System

    You don't need to - all you need is one friends table - the links between your existing user table and the friends table will do the work for you. When you click on add friend, you simply insert a record to the friends table, carrying the unique ID from the user table for the logged in user...
  17. freecrm

    validating forms - javascript - help needed

    There's a brilliant set of form validation tools done by Spry (normally integrated into DW CS3/4, but you should be able to use the basic JS. I use them on numerous forms and they are all AJAX based. Check out Spry Widgets at http://livedocs.adobe.com/ You can get the JS at places like...
  18. freecrm

    PHP - Help With Friends System

    xmakina is right - the array system is too cumbersome. When you want to show all the friends for the user signed in, you just create a recordset where the userid == the uniqueid of the person logged in.
  19. freecrm

    I'm new to this...

    OOOKK... big subject! Forgive me if I sound patronising in this but I am assuming you know nothing! First of all, each page is a saved file that can be any number of types (e.g. html, htm, shtml, xhtml, php, asp etc. etc.) Once you have created a page on your computer (htm or html is...
Top