Printing Avery Labels from a web site

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Printing Avery Labels from a web site

    I am just coming to grips with php, Dreamweaver and MySQL and I want to make
    a facility available for the members of the group I am creating my web site
    for. I want them to be able to print-out a list of address labels, using
    standard Avery labels, on their home PC's using the data from my MySQL
    tables. I am not yet sufficiently au fait with php to manage to code it
    myself so I wondered if anybody knew of any Dreamweaver extensions, add-ins
    or tutorials which would do the trick. I have had a good look at what is on
    the web but I can't find very much about it.

    Any ideas?
    --


    (\__/)
    (='.'=)
    (")_(")


    FredBear Guest

  2. Similar Questions and Discussions

    1. Label templates for Avery labels?
      Is there any place I can get templates for Avery labels? I've found a couple sites, but none of them have the 8395 or 5395 models (which I need)....
    2. Avery labels PDF
      I have a PDF file of Avery labels that contains name/addresses in a 30 up template. I need to be able to convert that PDF so that information in each...
    3. CF7 Reports formatted for Avery Labels
      Where could I find CF7 Reports formatted for standard 3 column Avery labels? Many thanks.
    4. Printing Business Cards on Avery Labels
      Hi there, I've created a business card in Illustrator CS and was hoping someone can guide me through printing them. I have these Avery labels for...
    5. Printing with Illustrator 8 and Avery multiple number of copies not possible?
      Dear friends, on PC with Windows 95 and Windows XP, I would like to upgrade to Illustrator 8 and I install last Avery printer driver. When I try...
  3. #2

    Default Re: Printing Avery Labels from a web site


    "FredBear" <ThisIsNotMyAddress@Yahoo.com> wrote in message
    news:13290j3c18spc85@corp.supernews.com...
    >I am just coming to grips with php, Dreamweaver and MySQL and I want to
    >make a facility available for the members of the group I am creating my web
    >site for. I want them to be able to print-out a list of address labels,
    >using standard Avery labels, on their home PC's using the data from my
    >MySQL tables. I am not yet sufficiently au fait with php to manage to code
    >it myself so I wondered if anybody knew of any Dreamweaver extensions,
    >add-ins or tutorials which would do the trick. I have had a good look at
    >what is on the web but I can't find very much about it.
    >
    > Any ideas?
    > --
    >
    >
    > (\__/)
    > (='.'=)
    > (")_(")
    >
    Presumably you just need to create a HTML table to match the dimensions of
    the labels, that can then be printed...... as you can specify the column
    widths and row heights in cm this should be fairly easy to construct.

    Adding code in PHP to create this on the fly from a database would also be
    fairly easy, as you are only looping through a recordset to insert the data
    into the cells of the table.



    Sean Guest

  4. #3

    Default Re: Printing Avery Labels from a web site

    Following on from Sean's message. . .
    >
    >Presumably you just need to create a HTML table to match the dimensions of
    >the labels, that can then be printed...... as you can specify the column
    >widths and row heights in cm this should be fairly easy to construct.
    Is the wrong answer.

    Use PDF

    --
    PETER FOX Not the same since the adhesive company came unstuck
    [email]peterfox@eminent.demon.co.uk.not.this.bit.no.html[/email]
    2 Tees Close, Witham, Essex.
    Gravity beer in Essex <http://www.eminent.demon.co.uk>
    Peter Fox Guest

  5. #4

    Default Re: Printing Avery Labels from a web site

    Peter Fox wrote:
    > Following on from Sean's message. . .
    >>
    >> Presumably you just need to create a HTML table to match the
    >> dimensions of
    >> the labels, that can then be printed...... as you can specify the column
    >> widths and row heights in cm this should be fairly easy to construct.
    > Is the wrong answer.
    >
    > Use PDF
    Using PDF's in place of web pages is a sure sign of a badly
    designed web site.

    I've had to disable PDF's in the web browser due to their
    inappropriate use on a variety of web pages.

    In computers older than 2 or 3 years, the sudden appearance of
    embedded PDF's frequently cause the system to slow down or even
    crash the browser.

    The better solution is to use CSS with the media set to print.
    Sanders Kaufman Guest

  6. #5

    Default Re: Printing Avery Labels from a web site


    "Peter Fox" <peterfox@eminent.demon.co.uk.not.this.bit.no.html > wrote in
    message news:gO2Y2LAAFKJGFwvd@eminent.demon.co.uk...
    > Following on from Sean's message. . .
    >>
    >>Presumably you just need to create a HTML table to match the dimensions of
    >>the labels, that can then be printed...... as you can specify the column
    >>widths and row heights in cm this should be fairly easy to construct.
    > Is the wrong answer.
    >
    > Use PDF
    >
    > --
    > PETER FOX Not the same since the adhesive company came unstuck
    > [email]peterfox@eminent.demon.co.uk.not.this.bit.no.html[/email]
    > 2 Tees Close, Witham, Essex.
    > Gravity beer in Essex <http://www.eminent.demon.co.uk>
    Wrong? ... How?

    PDF is an alternative to HTML, I would agree ... and would even concede that
    it's a better alternative, IF the guy can find (or be given) the appropriate
    code examples to complete the task, but HTML wouldn't be "wrong",
    particularly if he's new to the coding that it would take to complete the
    job.



    Sean Guest

  7. #6

    Default Re: Printing Avery Labels from a web site

    Following on from Sean's message. . .
    >
    >"Peter Fox" <peterfox@eminent.demon.co.uk.not.this.bit.no.html > wrote in
    >message news:gO2Y2LAAFKJGFwvd@eminent.demon.co.uk...
    >> Following on from Sean's message. . .
    >>>
    >>>Presumably you just need to create a HTML table to match the dimensions of
    >>>the labels, that can then be printed...... as you can specify the column
    >>>widths and row heights in cm this should be fairly easy to construct.
    >> Is the wrong answer.
    >>
    >> Use PDF
    >>
    >> --
    >> PETER FOX Not the same since the adhesive company came unstuck
    >> [email]peterfox@eminent.demon.co.uk.not.this.bit.no.html[/email]
    >> 2 Tees Close, Witham, Essex.
    >> Gravity beer in Essex <http://www.eminent.demon.co.uk>
    >
    >Wrong? ... How?
    Try it yourself and you'll find out.
    >
    >PDF is an alternative to HTML, I would agree ... and would even concede that
    >it's a better alternative, IF the guy can find (or be given) the appropriate
    >code examples to complete the task, but HTML wouldn't be "wrong",
    >particularly if he's new to the coding that it would take to complete the
    >job.
    HTML is not an alternative - it's a crap suggestion by somebody who
    doesn't know what they're talking about.





    --
    PETER FOX Not the same since the exam marking business failed
    [email]peterfox@eminent.demon.co.uk.not.this.bit.no.html[/email]
    2 Tees Close, Witham, Essex.
    Gravity beer in Essex <http://www.eminent.demon.co.uk>
    Peter Fox Guest

  8. #7

    Default Re: Printing Avery Labels from a web site

    >>Wrong? ... How?
    > Try it yourself and you'll find out.
    An HTML table to represent a sheet of Avery Labels (with PHP) could be done
    in your sleep ... assuming that you have a "basic" knowledge of HTML and
    PHP.
    >>> Use PDF
    Even with a PDF format you've still got to create some sort of table or
    something in columns to match the layout.
    >>PDF is an alternative to HTML, I would agree ... and would even concede
    >>that
    >>it's a better alternative, IF the guy can find (or be given) the
    >>appropriate
    >>code examples to complete the task, but HTML wouldn't be "wrong",
    >>particularly if he's new to the coding that it would take to complete the
    >>job.
    > HTML is not an alternative - it's a crap suggestion by somebody who
    > doesn't know what they're talking about.
    There's nothing like being constructive ... and that's nothing like
    constructive.



    Sean Guest

  9. #8

    Default Re: Printing Avery Labels from a web site

    Sean wrote:
    >>> Wrong? ... How?
    >
    >> Try it yourself and you'll find out.
    >
    > An HTML table to represent a sheet of Avery Labels (with PHP) could be done
    > in your sleep ... assuming that you have a "basic" knowledge of HTML and
    > PHP.
    >
    >>>> Use PDF
    >
    > Even with a PDF format you've still got to create some sort of table or
    > something in columns to match the layout.
    >
    >>> PDF is an alternative to HTML, I would agree ... and would even concede
    >>> that
    >>> it's a better alternative, IF the guy can find (or be given) the
    >>> appropriate
    >>> code examples to complete the task, but HTML wouldn't be "wrong",
    >>> particularly if he's new to the coding that it would take to complete the
    >>> job.
    >
    >> HTML is not an alternative - it's a crap suggestion by somebody who
    >> doesn't know what they're talking about.
    >
    > There's nothing like being constructive ... and that's nothing like
    > constructive.
    >
    >
    >
    Sean,

    The problem with HTML is it is a fluid layout, and he needs an
    absolutely fixed one.

    For instance, the user may not be using the default font size - on my
    laptop with a high res screen, I use a larger than normal font. On my
    desktop with it's 21" screen, I use a smaller than normal font. And my
    default printer font is not the same.

    Also, the printer size probably isn't exactly 8.5"x11" (assuming U.S.).
    Most printers have an unprintable margin - and this margin varies in
    size. The browser may attempt to shrink the page to fit in the margins,
    or it may let the page overflow to the next one.

    Lots of things like this can happen when you're using html. You can try
    to force some of them - but html is only a *recommendation* on how to
    display the page, not a *requirement*. You can't be sure you've got it
    right.

    A PDF, OTOH, is an exact layout and you can control the look of
    everything to a very fine level. It's a much superior way to go when
    you need exact placement like this.

    --
    ==================
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    [email]jstucklex@attglobal.net[/email]
    ==================
    Jerry Stuckle Guest

  10. #9

    Default Re: Printing Avery Labels from a web site

    Sean kirjoitti:
    > "Peter Fox" <peterfox@eminent.demon.co.uk.not.this.bit.no.html > wrote in
    > message news:gO2Y2LAAFKJGFwvd@eminent.demon.co.uk...
    >> Following on from Sean's message. . .
    >>> Presumably you just need to create a HTML table to match the dimensions of
    >>> the labels, that can then be printed...... as you can specify the column
    >>> widths and row heights in cm this should be fairly easy to construct.
    >> Is the wrong answer.
    >>
    >> Use PDF
    >>
    >> --
    >> PETER FOX Not the same since the adhesive company came unstuck
    >> [email]peterfox@eminent.demon.co.uk.not.this.bit.no.html[/email]
    >> 2 Tees Close, Witham, Essex.
    >> Gravity beer in Essex <http://www.eminent.demon.co.uk>
    >
    > Wrong? ... How?
    >
    > PDF is an alternative to HTML, I would agree ... and would even concede that
    > it's a better alternative, IF the guy can find (or be given) the appropriate
    > code examples to complete the task, but HTML wouldn't be "wrong",
    > particularly if he's new to the coding that it would take to complete the
    > job.
    I would agree that pdf in this case would be more suited, since it's
    better suited for printing than html. With pdf you can define better the
    layout of the print, with html the results aren't as precise. Html is
    suitable for publishing material that looks good or at least acceptable
    in most media (screen, print, handheld, etc.). When the target medium is
    print, then pdf is absolutely the best choice, because it's intended to
    be used in printing. Furthermore, pdf is not an alternative to html.
    They do have similarities, like they both are ways of presenting a
    document, but they are suited for different media.

    --
    [email]Rami.Elomaa@gmail.com[/email]

    "Wikipedia on vähän niinq internetin raamattu, kukaan ei pohjimmiltaan
    usko siihen ja kukaan ei tiedä mikä pitää paikkansa." -- z00ze
    Rami Elomaa Guest

  11. #10

    Default Re: Printing Avery Labels from a web site

    Sean wrote:
    >> HTML is not an alternative - it's a crap suggestion by somebody who
    >> doesn't know what they're talking about.
    >
    > There's nothing like being constructive ... and that's nothing like
    > constructive.
    Pdf is a better alternative - it's too bad that some people don't have
    the communication skills required to say that without sounding like an
    ass. But I guess an ass is bigger than a fox and that's what he values.

    Mike
    Michael Daly Guest

  12. #11

    Default Re: Printing Avery Labels from a web site

    | Pdf is a better alternative - it's too bad that some people don't have
    | the communication skills required to say that without sounding like an
    | ass.

    or he spoke his mind - 'ass' being relative to one's own sensitivity...which
    i've already stated, more and more skins are thinning every day. buck up! i
    believe he said almost word for word, 'pdf is a better alternative'...if no
    one else got that because they got their feelings hurt, cry to momma.

    jesus christ!

    and quit it with the fucking cross posting...do you really think that
    alt.php.sql could give a rat's ass about a presentation layer question?!!!


    Steve Guest

  13. #12

    Default Re: Printing Avery Labels from a web site

    Steve wrote:
    > | Pdf is a better alternative - it's too bad that some people don't have
    > | the communication skills required to say that without sounding like an
    > | ass.
    >
    > believe he said almost word for word, 'pdf is a better alternative'
    What he wrote _exactly_ (you can check it yourself) was
    > > it's a crap suggestion by somebody who doesn't know what
    > > they're talking about.
    If you think that's effective communication, then you're no doubt the
    same kind of ass.

    > and quit it with the fucking cross posting...do you really think that
    > alt.php.sql could give a rat's ass about a presentation layer question?!!!
    cry to momma.

    Cheers,
    Mike
    Michael Daly Guest

  14. #13

    Default Re: Printing Avery Labels from a web site

    "Michael Daly" <MichaelDaly@foo.bar> wrote in message
    news:JeydneKW2Yrv1rjbnZ2dnUVZ_j6dnZ2d@magma.ca...
    | Steve wrote:
    | > | Pdf is a better alternative - it's too bad that some people don't have
    | > | the communication skills required to say that without sounding like an
    | > | ass.
    | >
    | > believe he said almost word for word, 'pdf is a better alternative'
    |
    | What he wrote _exactly_ (you can check it yourself) was

    what he wrote _exactly_ (you can check it yourself) was

    'Use PDF'

    in his first reply.

    second reply...


    | > > it's a crap suggestion by somebody who doesn't know what
    | > > they're talking about.

    and he's right.

    | If you think that's effective communication, then you're no doubt the
    | same kind of ass.

    let's see, if 'crap' is offensive and 'doesn't know what they're talking
    about' is too, would it be best - since everyone is so fucking
    think-skinned - to say:

    i'm so terrible sorry you're under the impression that html is less
    problematic, even advantagous, to use in lieu of pdf. perhaps you simply
    have overlooked some very important details that i will outline now...as
    others have done, oh dear boy.

    BULLSHIT !!! effective communication is like wit; the more direct and simply
    stated, the more effective. sorry, sean obviously wants to stay in his
    comfort zone by boasting of html, states he doesn't know how to generate
    pdf's, yet 'thinks' he can be objective in his opinion without understanding
    the benefits/detriments of *both*. THAT is bullshit...which leads to the
    truth in:

    | > > it's a crap suggestion by somebody who doesn't know what
    | > > they're talking about.

    'crap' by any other name? does sean know what he's talking about?

    sorry...fox is right.

    | > and quit it with the fucking cross posting...do you really think that
    | > alt.php.sql could give a rat's ass about a presentation layer
    question?!!!
    |
    | cry to momma.

    exactly...lead the way, moron!


    Steve Guest

  15. #14

    Default Re: Printing Avery Labels from a web site

    Michael Daly wrote:
    > Steve wrote:
    >> | Pdf is a better alternative - it's too bad that some people don't have
    >> | the communication skills required to say that without sounding like an
    >> | ass.
    >>
    >> believe he said almost word for word, 'pdf is a better alternative'
    >
    > What he wrote _exactly_ (you can check it yourself) was
    >
    > > > it's a crap suggestion by somebody who doesn't know what
    > > > they're talking about.
    >
    > If you think that's effective communication, then you're no doubt the
    > same kind of ass.
    >
    >
    >> and quit it with the fucking cross posting...do you really think that
    >> alt.php.sql could give a rat's ass about a presentation layer
    >> question?!!!
    >
    > cry to momma.
    >
    > Cheers,
    > Mike
    Mike,

    Don't worry about the reject from alt.anal.orifices. He's just a troll.

    --
    ==================
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    [email]jstucklex@attglobal.net[/email]
    ==================
    Jerry Stuckle Guest

  16. #15

    Default Re: Printing Avery Labels from a web site

    Thanks for all the input, People, but I am now running out of the will to
    live reading through it all so I have devised a new strategy.

    I am going to do a mail merge in MS Word and upload it to my web site each
    time I add a new name to the database.

    The users can then print their Avery address labels straight from the Word
    Document. Not an entirely elegant solution but one which will work.


    (\__/)
    (='.'=)
    (")_(")



    FredBear Guest

  17. #16

    Default Re: Printing Avery Labels from a web site


    "FredBear" <ThisIsNotMyAddress@Yahoo.com> wrote in message
    news:132bv2dffo07325@corp.supernews.com...
    | Thanks for all the input, People, but I am now running out of the will to
    | live reading through it all so I have devised a new strategy.
    |
    | I am going to do a mail merge in MS Word and upload it to my web site each
    | time I add a new name to the database.
    |
    | The users can then print their Avery address labels straight from the Word
    | Document. Not an entirely elegant solution but one which will work.

    if you're server is windows and you have office installed, just use COM()
    and create a word object. perform whatever operations need to take place.
    then, set the headers appropriately for the browser and echo word's results.
    you don't need to break out of php to do any of that.

    cheers.




    Steve Guest

  18. #17

    Default Re: Printing Avery Labels from a web site

    On Tue, 17 Apr 2007 20:01:26 -0500, "Steve" <no.one@example.com>
    wrote:
    >"Michael Daly" <MichaelDaly@foo.bar> wrote in message
    >news:JeydneKW2Yrv1rjbnZ2dnUVZ_j6dnZ2d@magma.ca. ..
    >| Steve wrote:
    >| > | Pdf is a better alternative - it's too bad that some people don't have
    >| > | the communication skills required to say that without sounding like an
    >| > | ass.
    >| >
    >| > believe he said almost word for word, 'pdf is a better alternative'
    >|
    >| What he wrote _exactly_ (you can check it yourself) was
    >
    >what he wrote _exactly_ (you can check it yourself) was
    >
    >'Use PDF'
    >
    >in his first reply.
    >
    >second reply...
    >
    >
    >| > > it's a crap suggestion by somebody who doesn't know what
    >| > > they're talking about.
    >
    >and he's right.
    >
    >| If you think that's effective communication, then you're no doubt the
    >| same kind of ass.
    >
    >let's see, if 'crap' is offensive and 'doesn't know what they're talking
    >about' is too, would it be best - since everyone is so fucking
    >think-skinned - to say:
    >
    >i'm so terrible sorry you're under the impression that html is less
    >problematic, even advantagous, to use in lieu of pdf. perhaps you simply
    >have overlooked some very important details that i will outline now...as
    >others have done, oh dear boy.
    >
    >BULLSHIT !!! effective communication is like wit; the more direct and simply
    >stated, the more effective. sorry, sean obviously wants to stay in his
    >comfort zone by boasting of html, states he doesn't know how to generate
    >pdf's, yet 'thinks' he can be objective in his opinion without understanding
    >the benefits/detriments of *both*. THAT is bullshit...which leads to the
    >truth in:
    >
    >| > > it's a crap suggestion by somebody who doesn't know what
    >| > > they're talking about.
    >
    >'crap' by any other name? does sean know what he's talking about?
    >
    >sorry...fox is right.
    >
    >| > and quit it with the fucking cross posting...do you really think that
    >| > alt.php.sql could give a rat's ass about a presentation layer
    >question?!!!
    >|
    >| cry to momma.
    >
    >exactly...lead the way, moron!
    >
    We must all hope you get better quite soon.
    Robear Dyer (PA Bear)
    MS MVP-Windows (IE, OE, Security, Shell/User)
    AumHa VSOP & Admin; DTS-L.org
    PA Bear Guest

  19. #18

    Default Re: Printing Avery Labels from a web site

    | >| > and quit it with the fucking cross posting...do you really think that
    | >| > alt.php.sql could give a rat's ass about a presentation layer
    | >question?!!!
    | >|
    | >| cry to momma.
    | >
    | >exactly...lead the way, moron!
    | >
    |
    | We must all hope you get better quite soon.
    | Robear Dyer (PA Bear)

    oh robear...yet another. lest i say it again, the opportunists who show up
    at a feeding frenzy come bearing teeth. i believe you left your too, in the
    small cup of water on the sink in your bathroom. not only did you leave your
    teeth, you are how many days late? this thread has been dead for quite some
    time. does that mean you only eat off scraps? no, i imagine you are a bottom
    feeder - requiring neither teeth nor timing.

    :)


    Steve Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139