You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
(28) |
Jun
(54) |
Jul
(68) |
Aug
(34) |
Sep
(20) |
Oct
(62) |
Nov
(58) |
Dec
(77) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(91) |
Feb
(101) |
Mar
(73) |
Apr
(107) |
May
(56) |
Jun
(43) |
Jul
(68) |
Aug
(31) |
Sep
(35) |
Oct
(50) |
Nov
(20) |
Dec
(37) |
2004 |
Jan
(17) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(3) |
Jun
(11) |
Jul
(8) |
Aug
(22) |
Sep
(10) |
Oct
(9) |
Nov
(17) |
Dec
(6) |
2005 |
Jan
(14) |
Feb
(11) |
Mar
(6) |
Apr
(30) |
May
(17) |
Jun
(57) |
Jul
(18) |
Aug
(18) |
Sep
(32) |
Oct
(49) |
Nov
(19) |
Dec
(40) |
2006 |
Jan
(48) |
Feb
(68) |
Mar
(74) |
Apr
(92) |
May
(90) |
Jun
(60) |
Jul
(25) |
Aug
(47) |
Sep
(36) |
Oct
(64) |
Nov
(57) |
Dec
(21) |
2007 |
Jan
(74) |
Feb
(24) |
Mar
(49) |
Apr
(37) |
May
(56) |
Jun
(27) |
Jul
(23) |
Aug
(24) |
Sep
(24) |
Oct
(58) |
Nov
(13) |
Dec
(9) |
2008 |
Jan
(41) |
Feb
(16) |
Mar
(53) |
Apr
(19) |
May
(53) |
Jun
(20) |
Jul
(44) |
Aug
(12) |
Sep
(19) |
Oct
(22) |
Nov
(64) |
Dec
(14) |
2009 |
Jan
(16) |
Feb
(37) |
Mar
(30) |
Apr
(24) |
May
(3) |
Jun
(14) |
Jul
(39) |
Aug
(30) |
Sep
(38) |
Oct
(10) |
Nov
(9) |
Dec
(30) |
2010 |
Jan
(27) |
Feb
(9) |
Mar
(8) |
Apr
(38) |
May
(17) |
Jun
(2) |
Jul
(15) |
Aug
(3) |
Sep
(9) |
Oct
(3) |
Nov
(14) |
Dec
(6) |
2011 |
Jan
(1) |
Feb
(14) |
Mar
(18) |
Apr
(7) |
May
(3) |
Jun
(5) |
Jul
(3) |
Aug
|
Sep
(3) |
Oct
(3) |
Nov
(3) |
Dec
(2) |
2012 |
Jan
(2) |
Feb
(2) |
Mar
(1) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(4) |
Nov
(5) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Peter H. <ph...@ma...> - 2007-01-29 22:12:14
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, Jan 29, 2007 at 12:38:15PM -0600, Melanie McClusky wrote: > I create a custom "photo gallery" . Currently my client upload a thumbnail > and the regular size image. Now my client only wants to upload a regular > size image and have the "system" automaticly create a thumbnail. Other folks have given very good suggestions to produce resized photos, but I wanted to chime in to mention there's a quick-and-dirty hack: set the height and width attributes of the image to scale the iamge down. They won't load any faster than full size and it'll be tempting to put a lot of them on a page, making for a very slow page. But it's handy in a pinch. Here's a function to resize images -- you pass in the current width and height and a new maximum width and maximum height, and it'll return an array with the a new width and height that preserve the image's aspect ratio. function get_scaled_dimensions($width, $height, $max_width, $max_height) { if (width > height) $scale = $max_width / $width; else $scale = $max_height / $height; return array(floor($width * $scale), floor($height * $scale)); } - -- Peter Harkins - http://push.cx - http://nearbygamers.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: If you don't know what this is, it's OK to ignore it. iD8DBQFFvnE3a6PWv6+ALKoRAsrnAJ9NT8XhAmSOaVUcH4dvK7gePaNzaQCfUfBx T7ycYi00I2mR9znceRYi/5g= =GFIm -----END PGP SIGNATURE----- |
From: <jn...@cc...> - 2007-01-29 21:55:01
|
I have used this software under windows to create reduced jpeg including both 640 by 480 and thumbnails. it is a free download. http://www.emco.is/photo_resizer/features.html Julius Nadas Math Department Wilbur Wright College Chicago, IL |
From: Richard L. <ce...@l-...> - 2007-01-29 21:05:06
|
On Mon, January 29, 2007 12:38 pm, Melanie McClusky wrote: > I create a custom "photo gallery" . Currently my client upload a > thumbnail > and the regular size image. Now my client only wants to upload a > regular > size image and have the "system" automaticly create a thumbnail. > > I have not idea how to do this, into the code I already have. Do any > of you > know how? exec with convert is very powerful, but can have performance issues, as firing up exec with a mini-shell can get kind of expensive. Here is a thumbnail script I use: http://uncommonground.com/thumbnail.phps Here's the pathinfo.inc file referenced within that: http://uncommonground.com/pathinfo.phps It also adds a "credits" sidebar using the colors set by the site owner in the database, so you can probably ignore that. Pretty much every photo you see on http://uncommonground.com/ runs through this script, and that gets about a half million hits a month... Except the calendar page, where I pre-generate the thumbnails by hand, as there are so many, and because I want an extreme close-up rather than just a shrunken blob. If you're getting more traffic than that, you may want to consider running a cron job to thumbnail them once -- I don't do that, as we haven't quite reached the stage where we need that, but you might. -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? |
From: Anacreo <an...@gm...> - 2007-01-29 20:33:56
|
I wrote a command line php program a while ago that will convert photos, it uses the convert command from the ImageMagick library that is usually available on most hosting sites or can be installed/built manually on Unix/Windows. My program: http://www.phpbuilder.com/snippet/download.php?type=3Dsnippet&id=3D1849 Imagemagick: http://www.imagemagick.org/script/index.php My program is a basic wrapper and there are many ways of doing this type of things (this program was used for PDF input so I was a bit more limited). Alec On 1/29/07, Kenneth Downs <ke...@se...> wrote: > > There is a discussion going on today on the NYPHP group on exactly this > issue. > > If a picture was taken with a digital camera, there may be a thumbnail > built in, which you can pull out. > > If you are on Linux or Mac you can call out to the command line utility > "convert" to create a thumbnail-sized image. > > Melanie McClusky wrote: > > I create a custom "photo gallery" . Currently my client upload a > thumbnail and the regular size image. Now my client only wants to upload= a > regular size image and have the "system" automaticly create a thumbnail. > > > > I have not idea how to do this, into the code I already have. Do any of > you know how? > > > > PS =96 still working on the .pdf creation. Thanks to all who past me > information. > > > > Thanks, > > Melanie > > > > > > ------------------------------ > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share y= our > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > ------------------------------ > > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li...https://lists.sourceforge.net/lists= /listinfo/chiphpug-discuss > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > > |
From: Melanie M. <me...@po...> - 2007-01-29 18:38:38
|
I create a custom "photo gallery" . Currently my client upload a thumbnail and the regular size image. Now my client only wants to upload a regular size image and have the "system" automaticly create a thumbnail. I have not idea how to do this, into the code I already have. Do any of you know how? PS - still working on the .pdf creation. Thanks to all who past me information. Thanks, Melanie |
From: Sarah G. <sa...@fa...> - 2007-01-26 16:07:03
|
Thanks everyone. I hadn't known that about the transliteration and it makes perfect sense it's for register_globals. The site in question had been written 4-5 years ago and lived on a server where register_globals was on by default, so not surprising the issue existed and *definitely* not surprising that we noticed the problem when we moved servers. Field names were auto-generated to encode information, and some had dots in them. Anyway, noted and changed. Thanks. Richard Lynch wrote: > On Wed, January 24, 2007 2:08 pm, Sarah Gray wrote: > >> Does anyone know why it is that a form element named using dots is >> transliterated to a form element named using underscores when it is >> posted using PHP [4.4.4 and 4.3.2, at least]? It's as if php runs a >> pre-filter preg_replace on the names of input fields before outputting >> them to the $_POST array. >> Is this for a security reason? Are these illegal naming conventions >> for >> form names in general? Here's my example: >> >> I'd never encountered this before, but a simple test shows that >> >> <form action="#" method="post"> >> <input type="hidden" name="name.with.dots"> >> <input type="submit"> >> </form> >> >> turns into the below (when displayed using print_r) in the $_POST >> array: >> >> Array >> ( >> [name_with_dots] => >> ) >> > > Back in the good ol' days, when you didn't have a zillion spammers and > hackers sending in crap data to a web form, you'd just be using > $name_with_dots from register_globals. > > Since PHP variable names did not allow '.' in them, the dots had to > turn into something else, and _ was chosen. > > As a result of this history, the $_POST (and $_GET) keys also are > changed to match this. > > This is even more apparent if you use INPUT TYPE="IMAGE" NAME="foo" > where you get foo_x and foo_y instead of foo.x and foo.y, which are > HTTP spec, so you can't do anything about that conversion. At least > when one is choosing the names, one can just opt not to use '.' > [shrug] > > |
From: <ce...@l-...> - 2007-01-25 20:01:15
|
ChiPHPug (Chicago PHP Users Group) brunch social is coming up. If I wrote the PHP code correctly, it's on 02/03/2007 For sure, it's on the FIRST SATURDAY of each month. Time: 1 pm Location: Uncommon Ground http://uncommonground.com Directions: Find Wrigley Field. Drive 1.5 blocks Northwest on Clark. Park. There are several spots that have no meter but are perfectly legal right on the corner. |
From: Richard L. <ce...@l-...> - 2007-01-24 23:12:38
|
On Wed, January 24, 2007 2:08 pm, Sarah Gray wrote: > Does anyone know why it is that a form element named using dots is > transliterated to a form element named using underscores when it is > posted using PHP [4.4.4 and 4.3.2, at least]? It's as if php runs a > pre-filter preg_replace on the names of input fields before outputting > them to the $_POST array. > Is this for a security reason? Are these illegal naming conventions > for > form names in general? Here's my example: > > I'd never encountered this before, but a simple test shows that > > <form action="#" method="post"> > <input type="hidden" name="name.with.dots"> > <input type="submit"> > </form> > > turns into the below (when displayed using print_r) in the $_POST > array: > > Array > ( > [name_with_dots] => > ) Back in the good ol' days, when you didn't have a zillion spammers and hackers sending in crap data to a web form, you'd just be using $name_with_dots from register_globals. Since PHP variable names did not allow '.' in them, the dots had to turn into something else, and _ was chosen. As a result of this history, the $_POST (and $_GET) keys also are changed to match this. This is even more apparent if you use INPUT TYPE="IMAGE" NAME="foo" where you get foo_x and foo_y instead of foo.x and foo.y, which are HTTP spec, so you can't do anything about that conversion. At least when one is choosing the names, one can just opt not to use '.' [shrug] -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? |
From: <ja...@ho...> - 2007-01-24 23:03:01
|
Oh yeah, forgot to start the holy war of CamelCase vs score_spacing.. > I don't know if .'s are valid in variable names.. ?.. I know its not > encouraged.. > >>From the manual: > > http://us3.php.net/manual/en/language.variables.php > > Basics > > Variables in PHP are represented by a dollar sign followed by the name = of > the variable. The variable name is case-sensitive. > > Variable names follow the same rules as other labels in PHP. A valid > variable name starts with a letter or underscore, followed by any numbe= r > of letters, numbers, or underscores. As a regular expression, it would = be > expressed thus: '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*' > > Note: For our purposes here, a letter is a-z, A-Z, and the ASCII > characters from 127 through 255 (0x7f-0xff). > > > Also worth noting: > > http://cvs.php.net/viewvc.cgi/php-src/CODING_STANDARDS?view=3Dco > > > >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> On Wed, Jan 24, 2007 at 02:08:41PM -0600, Sarah Gray wrote: >>> Does anyone know why it is that a form element named using dots is >>> transliterated to a form element named using underscores when it is >>> posted using PHP [4.4.4 and 4.3.2, at least]? It's as if php runs a >>> pre-filter preg_replace on the names of input fields before outputtin= g >>> them to the $_POST array. >> >> That's pretty much exactly what happens. Because of register_globals, >> the keys have to be valid variable names. $name.with.dots is invalid, >> but $name_with_dots is OK. This alteration was carried over into $_POS= T >> and the others. >> >> >> - -- >> Peter Harkins - http://push.cx - http://cambrianhouse.com >> >> >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.3 (GNU/Linux) >> Comment: If you don't know what this is, it's OK to ignore it. >> >> iD8DBQFFt9ABa6PWv6+ALKoRAgpQAJ9gsZlRWOXWvQZ7fwVbXknKoUQMcwCdH8ZH >> kLqCrp8XXvL6J1X0fYkm810=3D >> =3DGF1M >> -----END PGP SIGNATURE----- >> >> ----------------------------------------------------------------------= --- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to shar= e >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV >> _______________________________________________ >> chiPHPug-discuss mailing list >> chi...@li... >> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss >> > > > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: <ja...@ho...> - 2007-01-24 22:36:26
|
I don't know if .'s are valid in variable names.. ?.. I know its not encouraged.. >From the manual: http://us3.php.net/manual/en/language.variables.php Basics Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case-sensitive. Variable names follow the same rules as other labels in PHP. A valid variable name starts with a letter or underscore, followed by any number of letters, numbers, or underscores. As a regular expression, it would be expressed thus: '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*' Note: For our purposes here, a letter is a-z, A-Z, and the ASCII characters from 127 through 255 (0x7f-0xff). Also worth noting: http://cvs.php.net/viewvc.cgi/php-src/CODING_STANDARDS?view=3Dco > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Wed, Jan 24, 2007 at 02:08:41PM -0600, Sarah Gray wrote: >> Does anyone know why it is that a form element named using dots is >> transliterated to a form element named using underscores when it is >> posted using PHP [4.4.4 and 4.3.2, at least]? It's as if php runs a >> pre-filter preg_replace on the names of input fields before outputting >> them to the $_POST array. > > That's pretty much exactly what happens. Because of register_globals, > the keys have to be valid variable names. $name.with.dots is invalid, > but $name_with_dots is OK. This alteration was carried over into $_POST > and the others. > > > - -- > Peter Harkins - http://push.cx - http://cambrianhouse.com > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.3 (GNU/Linux) > Comment: If you don't know what this is, it's OK to ignore it. > > iD8DBQFFt9ABa6PWv6+ALKoRAgpQAJ9gsZlRWOXWvQZ7fwVbXknKoUQMcwCdH8ZH > kLqCrp8XXvL6J1X0fYkm810=3D > =3DGF1M > -----END PGP SIGNATURE----- > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Peter H. <ph...@ma...> - 2007-01-24 21:30:49
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed, Jan 24, 2007 at 02:08:41PM -0600, Sarah Gray wrote: > Does anyone know why it is that a form element named using dots is > transliterated to a form element named using underscores when it is > posted using PHP [4.4.4 and 4.3.2, at least]? It's as if php runs a > pre-filter preg_replace on the names of input fields before outputting > them to the $_POST array. That's pretty much exactly what happens. Because of register_globals, the keys have to be valid variable names. $name.with.dots is invalid, but $name_with_dots is OK. This alteration was carried over into $_POST and the others. - -- Peter Harkins - http://push.cx - http://cambrianhouse.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: If you don't know what this is, it's OK to ignore it. iD8DBQFFt9ABa6PWv6+ALKoRAgpQAJ9gsZlRWOXWvQZ7fwVbXknKoUQMcwCdH8ZH kLqCrp8XXvL6J1X0fYkm810= =GF1M -----END PGP SIGNATURE----- |
From: Sarah G. <sa...@fa...> - 2007-01-24 20:08:56
|
Hello, Does anyone know why it is that a form element named using dots is transliterated to a form element named using underscores when it is posted using PHP [4.4.4 and 4.3.2, at least]? It's as if php runs a pre-filter preg_replace on the names of input fields before outputting them to the $_POST array. Is this for a security reason? Are these illegal naming conventions for form names in general? Here's my example: I'd never encountered this before, but a simple test shows that <form action="#" method="post"> <input type="hidden" name="name.with.dots"> <input type="submit"> </form> turns into the below (when displayed using print_r) in the $_POST array: Array ( [name_with_dots] => ) Any info appreciated. Thanks, Sarah |
From: Richard L. <ce...@l-...> - 2007-01-23 19:52:06
|
I get email from this guy all the time, and there is FINALLY a PHP job in it... I know absolutely nothing more about any of this -- not even sure why he sends me the emails. -------------------------- Original Message -------------------------- Subject: Job openings Jan 23rd ...Bears From: "Jeff Williams" <je...@cp...> Date: Tue, January 23, 2007 6:56 am To: ---------------------------------------------------------------------- January 23, 2007 Current Openings Jobs are listed by location... Chicago, N/Burbs and W/Burbs ... [other jobs deleted] NEW!!!! PHP DEVELOPER $55,000 to 75,000. We are looking for PHP Developers for a financial based firm in Chicago. This is a great opportunity to join a leading financial based firm in Chicago. Your responsibilities include the design and maintenance of PHP applications that will be instrumental in the company's success. This company offers a business casual working environment and excellent benefits that include; GREAT BONUS 10% - ? The company is growing and looking for quality individuals who like to be part of a dynamic team. This is an excellent role for someone with just 1-2 years of experience. CHICAGO ... [more jobs deleted] JEFF WILLIAMS MANAGER CPS IT 708-531-8377 www.cps4jobs.com NOTICE: This e-mail message and all attachments transmitted with it are intended solely for the use of the addressee and may contain legally privileged and confidential information. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or other use of this message or its attachments is strictly prohibited. If you have received this message in error, please notify the sender immediately by replying to this message and please delete it from your computer. -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? |
From: Richard L. <ce...@l-...> - 2007-01-19 19:46:19
|
On Thu, January 18, 2007 4:50 pm, Melanie McClusky wrote: > Anybody know how to create .pdf's online. More details.. > > I have people taking a test, when they have completed the test, I need > the > report to output as a .pdf. The information that is to print out will > be > coming from information that is stored in a database. I've used http://php.net/pdf maybe a dozen times. Here's a simple example: http://uncommonground.com/engineers/cheatsheet.pdf http://uncommonground.com/engineers/cheatsheet.phps This one has no database variables, but you can probably work out that bit easily enough already. I find it a lot easier to think in "inches" and use "X * 72" all over the place. Here's one a bit more complicated: http://uncommonground.com/events.pdf http://uncommonground.com/events_pdf.phps This pulls a rather complicated query from the database, inserts JPG images, and dynamically chooses a font size between a range based on the amount of space the text needs for each date on the calendar. This one was done long before I figured out the * 72 trick... (The globals.inc just defines the 'pagetop' and 'pagebot' functions that are used in case of a total failure -- ignore it) You probably need something in between these two in terms of complexity. -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? |
From: matt d. <mm_...@ya...> - 2007-01-19 01:43:20
|
I use dompdf - it takes a css formatted html doc and converts.=0Apainless.= =0Ahttp://sourceforge.net/projects/dompdf/=0A=0A=0A----- Original Message -= ---=0AFrom: Melanie McClusky <me...@po...>=0ATo: chiphpug-d= is...@li...=0ASent: Thursday, January 18, 2007 4:50:58 PM=0ASubject= : [chiPHPug-discuss] create .pdf's online=0A=0A=0AAnybody know how to creat= e .pdf=92s online. More details=85.=0A =0AI have people taking a test, whe= n they have completed the test, I need the report to output as a .pdf. The= information that is to print out will be coming from information that is s= tored in a database. =0A =0AAny suggestions?=0A =0A =0A~Melanie=0A =0A-----= --------------------------------------------------------------------=0ATake= Surveys. Earn Cash. Influence the Future of IT=0AJoin SourceForge.net's Te= chsay panel and you'll get the chance to share your=0Aopinions on IT & busi= ness topics through brief surveys - and earn cash=0Ahttp://www.techsay.com/= default.php?page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV=0A________________= _______________________________=0AchiPHPug-discuss mailing list=0AchiPHPug-= di...@li...=0Ahttps://lists.sourceforge.net/lists/listinf= o/chiphpug-discuss |
From: Ken D. <ke...@se...> - 2007-01-19 01:03:22
|
I used fpdf for exactly the same purpose, certificates after taking a test.http://www.fpdf.org"Melanie McClusky" <me...@po...> wrote: > Anybody know how to create .pdf's online. More details.. > > > > I have people taking a test, when they have completed the test, I need the > report to output as a .pdf. The information that is to print out will be > coming from information that is stored in a database. > > > > Any suggestions? > > > > > > ~Melanie > > > > _________________________________________________________ This mail sent using V-webmail - http://www.v-webmail.org |
From: Nola S. <mrn...@gm...> - 2007-01-18 23:05:59
|
Well, its my fault actually. I usually work at home on wednesdays, and came in anyways or switched days at home with another day on PHP meeting day... but.. I have another obigation that is on wednesday mornings I need to be home for (but only for 6 more weeks) ... so this past time I came up to the city at 1pm and worked half day in the office then hosted the meetings. Its not imperative that we move it... I can switch around so I can still be there to host the meeting or maybe Jen would be in charge of the room. On 1/18/07, Larry Garfield <lga...@gm...> wrote: > Thursdays there are already two LUGs that I go to, so I couldn't make it. > 3rd Thursday of February is the 15th, when I'm giving a Drupal talk for the > Depaul one. > > Mondays I moderate a non-tech discussion channel in IRC. I wouldn't be able > to make Mondays, probably ever. > > Tuesdays and Wednesdays are the only days that I reliably have free at > present. > > Why exactly would we need to change? > > --Larry Garfield > > > On 1/18/07, Nola Stowe <mrn...@gm...> wrote: > > How about Third mondays? > > > > On 1/18/07, Richard Lynch <ce...@l-...> wrote: > > > We may need to move the meeting day from THIRD WEDNESDAYS to THIRD > > > THURSDAYS. > > > > > > Any major conflicts?... > > > > > > PS > > > Our next month's topic is XDebug (Nola) and valgrind (Rich) > > > > > > -- > > > Some people have a "gift" link here. > > > Know what I want? > > > I want you to buy a CD from some starving artist. > > > http://cdbaby.com/browse/from/lynch > > > Yeah, I get a buck. So? > > > > > > > > > > ------------------------------------------------------------------------- > > > Take Surveys. Earn Cash. Influence the Future of IT > > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > > opinions on IT & business topics through brief surveys - and earn cash > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > _______________________________________________ > > > chiPHPug-discuss mailing list > > > chi...@li... > > > > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > > > > > > > -- > > http://rubygeek.com - my blog featuring: Ruby, PHP and Perl > > http://DevChix.com - boys can't have all the fun > > http://CodeSnipers.com > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys - and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > chiPHPug-discuss mailing list > > chi...@li... > > > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > > > > -- > Larry Garfield > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > -- http://rubygeek.com - my blog featuring: Ruby, PHP and Perl http://DevChix.com - boys can't have all the fun http://CodeSnipers.com |
From: Peter H. <ph...@ma...> - 2007-01-18 22:58:32
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Jan 18, 2007 at 04:50:58PM -0600, Melanie McClusky wrote: > I have people taking a test, when they have completed the test, I need the > report to output as a .pdf. The information that is to print out will be > coming from information that is stored in a database. PHP has an optional library that lets you work with pdfs: http://php.net/pdf You could create a PDF template, open it, add the user's results, save it, and send it. - -- Peter Harkins - http://push.cx - http://cambrianhouse.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: If you don't know what this is, it's OK to ignore it. iD8DBQFFr/uTa6PWv6+ALKoRAvLuAJoCmfS2NQ9Rj7H7IHQpifFkm5ZHDQCeOi7l YAS0ujtHpogCrDooP/TDShk= =R8DG -----END PGP SIGNATURE----- |
From: Janine S. <jr...@ba...> - 2007-01-18 22:53:48
|
I don't know if there's a way to do it immediately, but you could open it in OpenOffice and save to pdf. Janine Melanie McClusky wrote: > > Anybody know how to create .pdf’s online. More details…. > > I have people taking a test, when they have completed the test, I need > the report to output as a .pdf. The information that is to print out > will be coming from information that is stored in a database. > > Any suggestions? > > ~Melanie > |
From: Melanie M. <me...@po...> - 2007-01-18 22:51:11
|
Anybody know how to create .pdf's online. More details.. I have people taking a test, when they have completed the test, I need the report to output as a .pdf. The information that is to print out will be coming from information that is stored in a database. Any suggestions? ~Melanie |
From: Larry G. <lga...@gm...> - 2007-01-18 22:45:19
|
Thursdays there are already two LUGs that I go to, so I couldn't make it. 3rd Thursday of February is the 15th, when I'm giving a Drupal talk for the Depaul one. Mondays I moderate a non-tech discussion channel in IRC. I wouldn't be able to make Mondays, probably ever. Tuesdays and Wednesdays are the only days that I reliably have free at present. Why exactly would we need to change? --Larry Garfield On 1/18/07, Nola Stowe <mrn...@gm...> wrote: > > How about Third mondays? > > On 1/18/07, Richard Lynch <ce...@l-...> wrote: > > We may need to move the meeting day from THIRD WEDNESDAYS to THIRD > > THURSDAYS. > > > > Any major conflicts?... > > > > PS > > Our next month's topic is XDebug (Nola) and valgrind (Rich) > > > > -- > > Some people have a "gift" link here. > > Know what I want? > > I want you to buy a CD from some starving artist. > > http://cdbaby.com/browse/from/lynch > > Yeah, I get a buck. So? > > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys - and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > chiPHPug-discuss mailing list > > chi...@li... > > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > > > -- > http://rubygeek.com - my blog featuring: Ruby, PHP and Perl > http://DevChix.com - boys can't have all the fun > http://CodeSnipers.com > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- Larry Garfield |
From: Nola S. <mrn...@gm...> - 2007-01-18 22:41:17
|
How about Third mondays? On 1/18/07, Richard Lynch <ce...@l-...> wrote: > We may need to move the meeting day from THIRD WEDNESDAYS to THIRD > THURSDAYS. > > Any major conflicts?... > > PS > Our next month's topic is XDebug (Nola) and valgrind (Rich) > > -- > Some people have a "gift" link here. > Know what I want? > I want you to buy a CD from some starving artist. > http://cdbaby.com/browse/from/lynch > Yeah, I get a buck. So? > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- http://rubygeek.com - my blog featuring: Ruby, PHP and Perl http://DevChix.com - boys can't have all the fun http://CodeSnipers.com |
From: Richard L. <ce...@l-...> - 2007-01-18 22:35:58
|
We may need to move the meeting day from THIRD WEDNESDAYS to THIRD THURSDAYS. Any major conflicts?... PS Our next month's topic is XDebug (Nola) and valgrind (Rich) -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? |
From: Nola S. <mrn...@gm...> - 2007-01-17 16:40:20
|
Oh Yes! you must talk about firebug ... :) On 1/17/07, Peter Harkins <ph...@ma...> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Tue, Jan 16, 2007 at 05:27:25PM -0600, Nola Stowe wrote: > > No.. not as far as I know... I guess you are it! :) haha > > > > I may be able to show off XDebug if there is interest... I've been > > working on installing it today and learning how to use it. > > I could follow up with an off-the-cuff presentation titled "If You > Aren't Using Firebug, You're Wasting Your Time". It's me rambling around > Firebug and showing off its jaw-dropping features for about 15 minutes. > I can't promise a polished talk, but if you don't already know about > Firebug I can promise you will come away significantly more productive. > > - -- > Peter Harkins - http://push.cx - http://cambrianhouse.com > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.3 (GNU/Linux) > Comment: If you don't know what this is, it's OK to ignore it. > > iD8DBQFFrkq4a6PWv6+ALKoRArXwAJ9nDXgksrXHvfFy0o3fVL0FfxDCOQCeMsqw > DH/KBiewsRTzDaeTCkpeRuo= > =avll > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- http://rubygeek.com - my blog featuring: Ruby, PHP and Perl http://DevChix.com - boys can't have all the fun http://CodeSnipers.com |
From: Peter H. <ph...@ma...> - 2007-01-17 16:11:55
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Tue, Jan 16, 2007 at 05:27:25PM -0600, Nola Stowe wrote: > No.. not as far as I know... I guess you are it! :) haha > > I may be able to show off XDebug if there is interest... I've been > working on installing it today and learning how to use it. I could follow up with an off-the-cuff presentation titled "If You Aren't Using Firebug, You're Wasting Your Time". It's me rambling around Firebug and showing off its jaw-dropping features for about 15 minutes. I can't promise a polished talk, but if you don't already know about Firebug I can promise you will come away significantly more productive. - -- Peter Harkins - http://push.cx - http://cambrianhouse.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: If you don't know what this is, it's OK to ignore it. iD8DBQFFrkq4a6PWv6+ALKoRArXwAJ9nDXgksrXHvfFy0o3fVL0FfxDCOQCeMsqw DH/KBiewsRTzDaeTCkpeRuo= =avll -----END PGP SIGNATURE----- |