Search results

  1. freecrm

    PHP Source Code

    Yuk.... :nuts: Whats the point?
  2. freecrm

    TAFE STUDENT - PHP - Send mail - Verify feilds

    Ooooh... didn't know about this!
  3. freecrm

    PHP Source Code

    Fully agree with most of this but creating your own code from scratch is often very time consuming and prone to syntax errors. At least with DW, it does a lot of the hard work for you in a very short space of time to start off with. The problem comes when you want the code to do something...
  4. freecrm

    TAFE STUDENT - PHP - Send mail - Verify feilds

    This doesn't really control data entry very well. I use javascript to check each form field. You can then validate field formats, nulls, comparisons etc etc. and even colour the fields when they are wrong/ correct... I don't think this level of control is possible in php. This is all...
  5. freecrm

    PHP Source Code

    Forgive my ignorance - what does CMS stand for? Code Managers? Computer Must Shutdown???? :biggrin: If Dreamweaver is a CMS, I like it - BUT - it does require some basic understanding of php and don't rely on it. For beginners of php I would suggest the following: Understand the working...
  6. freecrm

    New to PHP and very confused...

    I don't really understand global variables and don't use them.. My script is simple. First, I convert the text from the form to a simpler variable for ease.. <?php $firstname= $_POST['firstnametextfield1']; $lastname=$_POST['lastnametextfield2']; $contactemail=$_POST['email']; ?> etc...
  7. freecrm

    Unique php page

    My registration process contains few pages. PAGE 1: Registration Form First page is imple form with usual stuff - Username, Password, E-mail address etc. On submit, the same page enters these details into the back end database but enters a value under the access level as "Unvalidated"...
  8. freecrm

    Unique php page

    Surely the "unique" page would simply do a validation search on a database, depending on the $POST or even $SESSION variable from the previous page?? Or even just a simpler check of a specified value from these variables? So even if you type in the correct URL, it wont carry the right...
  9. freecrm

    trying to make a few changes

    A game in php MySQL??? - this should be fun!
  10. freecrm

    Web/Graphic Design

    Website: Looks cool with some nice flash elements. My only comment as I looked through it was the "whoosh" sound byte as the panel moves from right to left which I found highly annoying! Zbar poster and flyer: I work in marketing and come from a graphic design background and always try to...
  11. freecrm

    Anyone use Dreamweaver?

    I use DW CS3 all the time - in fact my whole site (or most of it) is generated in DW. I love it because it does a lot of the work for you BUT: it is quite limited when it comes to helping the user understand what the hell it is doing! As a starter, I would suggest you get to grips with...
  12. freecrm

    Insert records from a local csv file

    Lol - I detect a note of sarcasm here! ;) I am also thankful for your efforts and have given you 100 creds. He did write the entire script that worked though including some additional validation...
  13. freecrm

    Insert records from a local csv file

    Perfect - many thanks... Edit: Please close this thread.
  14. freecrm

    Insert records from a local csv file

    Natsuki - you are an absolute star!!!!!!!!! (And I'm very thankful for your time and am sending you 200 creds - not much I know but I don't have many!) It works a treat and no problems. I tidied up the data file to get rid of the extra line... Yay!!!!!!!!!!!!!!! :biggrin: Just one...
  15. freecrm

    Insert records from a local csv file

    OK - have changed the code to the following: <?php //connect to db or show error mysql_select_db($database_freecrm, $freecrm) or die(mysql_error()); //if form hidden field returns a value, execute the following script if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {...
  16. freecrm

    How do I protect my form in php??

    If you're worried about bot-spam, try looking at CAPTCHA systems (although I hate them!)
  17. freecrm

    Insert records from a local csv file

    Thanks Scoochi I have put this code in but am not getting anywhere with it. In your example, where do i insert the file path from the form? You have references to $filename (which is testdata.csv but could be any number of names) and also to the filename itself. I have tried various...
  18. freecrm

    |REC| 10-40 points - Let's edit this image!

    Ok this makes little sense... If you mean create a new image from scratch, whats the point of editing the image you've provided? Or am I missing something?
  19. freecrm

    Some PHP Help

    Just a quick thing really. Your first few lines states; If the logged_in session variable is not empty, then $access = FALSE. Then, slightly lower down, as part of the same 'if' part, you state: else if the logged_in session variable is empty, ..... $access = FALSE!!! So either...
Top