Search results

  1. freecrm

    DW error message

    I use DW CS3 but due to copyright, I can't post a working file; however, I will try to compare the two files and see what I get if there are any differences. If this doesn't work, I'll try to help with the insert code. Edit: Stupidly, I have now compared the two files side by side and they...
  2. freecrm

    php calendar??

    np - I didn't expect this to be a quick fix!
  3. freecrm

    Help needed in integrating my site with PHPBB3

    This is a hugely tricky area and I have tried on numerous occasions to integrate phpBB3 into the rest of my site. The main user table is (in my site) phpbb_users, within which are the usernames and passwords needed for secure authentication. (not sure what the password encryption is though)...
  4. freecrm

    php calendar??

    Thanks kbjradmin. Unforunately, this is one page in thousands that contain basic date/time pickers. The only true event calendar here isn't free and is again - complex.
  5. freecrm

    Dreamweaver vs Notepad?

    Absolutely agree with Trixter here. The time spent learning DW is very prohibitive as it is not the easiest of applications to "pick up". Our company does continual develoment work so purchase of DW was cost-effective. Just beware of developers quotes - the less learned could easily get...
  6. freecrm

    Dreamweaver vs Notepad?

    Zacheri I use DW CS3 but have also used notepad. One major point here - time! Coding by hand in notepad is timeconsuming and prone to syntax error. A good coder still has to start from pretty much scratch with each new page and debugging is a pain. Dreamweaver doesn't solve all your...
  7. freecrm

    php calendar??

    I have looked around for ages for a free php calendar with reasonable interface. The trouble is, the good ones tend to have user functions and back end database already set up. I already have an event db table and all I need is a bit of Javascript to produce a dynamic event calendar showing...
  8. freecrm

    PHP Include, file help!

    Interesting point.. what's the syntax for this and why do we even have an include function? If you echo a page, does it process any included php? What are the pro's con's?
  9. freecrm

    PHP Include, file help!

    Couple of things to watch out for here... Firstly, all my includes have double quotation marks (") but I'm not sure that has any relevance. More importantly is the location of the included file. If they are in the same directory as the file you are including them into - there shouldn't be...
  10. freecrm

    Creating embeddable content.

    Alternatively, you could use the php include function which seamlessly inserts other pages into the one you want them to appear in. Without knowing what type of "file" you are trying to embed, I can't advise more than the above.
  11. freecrm

    Grrrr...

    Have you tried using myphpadmin to create them or do you specifically want it created in script?
  12. freecrm

    Site graphics

    I've been using graphics packages for over ten years, back when Dreamweaver was still owned by Macromedia. Today, of course, it's all Adobe and the latest CS3 Suite packages Phooshop, Dreamweaver, Flash and a whole host of goodies. I use it all the time but could, if pushed (very hard) use...
  13. freecrm

    ORDER BY challenge..

    This would be good but will probably be quite complex. Looks like I might be moving to session variables after all. - my $_POST script ain't workin'!!!:mad: Here is my current garbage! (I haven't included the whole script - just the key bits..) in header.. $workgroup_RSOpps =...
  14. freecrm

    ORDER BY challenge..

    Whoaaaa.... I have a lot of responses I didn't think I'd get!!! Thanks Guys Orczas - I know you've spent a lot of time on this post and I appreciate it but I did think about using sessions variables (As I already use sessions) but I was hoping for a simpler solution.. Something...
  15. freecrm

    ORDER BY challenge..

    ... how do i start to attempt this? I'm not even sure I understand what it means lol. I'll be more specific. Mattura was correct in that I am trying to refresh the page (and query), adding a new $_GET variable from the URL. Edit: most variables are $_POST Not sure.. I need to...
  16. freecrm

    PHP Source Code

    I must admit, I have phpBB3 forums on my site and it is sooooo complex I wouldn't know where to start with customising it! The number of includes and cross refrences to db values mean you have to have developed it to understand it!! V Good though and I've ustomised the theme to fit in with...
  17. freecrm

    ORDER BY challenge..

    Good point matt. I wonder how long I can make a URL... :) The only trouble i can see is the section: $varordby_RSOpps = "COMPANY"; if (isset($_GET['ordby'])) { $varordby_RSOpps = $_GET['ordby']; } Because the variable will be re-set. I suppose I could make it... if...
  18. freecrm

    Unique php page

    Thanks for the comments guys - its these remarks that provide enough incentive to do it! - well that and reps and credits lol. :)
  19. freecrm

    ORDER BY challenge..

    php based... I have a fairly simple sql query SELECT blah de blah... ORDER BY X I am trying to produce a dynamic table with column headers with a link back to the same page, but including ?ordby=whatevercolumnisclicked so that if the column header is clicked, the page refreshes...
  20. freecrm

    Unique php page

    Thanks! As far as I understand it, you do not have a "registry" i.e. no users. The MySQL is purely a backend database that stores information. If you don't need to store anything for future reference, you don't need the database and php is perectly capable of operating without it...
Top