Recent content by Yesideez

  1. Y

    Methods of Mass Mailing

    If you've got all their details in a table you can loop through and send them one by one if you've got a large number or if you've only got a small number you can BCC them in on one email but be warned that some web hosts don't take too kindly to mass emailing and some will suspend accounts if...
  2. Y

    alternative to MAIL()

    One such library which is one I always use myself is PHPMailer - awesome class that's easy to use, handles HTML and plain text emails and emails with attachments and much more.
  3. Y

    What's the difference between PHP echo() and PHP print()?

    echo and print are essentially the same except print will append a new line onto the end of the output. This can be handy if you're wanting to keep the HTML easily readable in the browser when you view source if you need to keep it readable but I prefer to use echo all the time and when I...
  4. Y

    Trying to populate listview with secondary table data

    I've got this query: SELECT worklog.[_propertyid],worklog.id,worklog.address,worklog.postcode,worklog.dateassigned,worklog.workcompleted,worklog.paymentreceived,worklog.added FROM worklog INNER JOIN properties ON worklog.[_propertyid]=properties.id WHERE worklog.[_propertyid]=properties.id...
  5. Y

    Just signed up

    Been using MySQL for around 10 years, very proficient with it. Loaded Access 2007 up for the first time 3 days ago to fix and redesign a database for a friend's business. Jumped in at the deep end a bit as I've had to normalise his database from two unrelated tables containing a total of 18,000...
Back
Top Bottom