RE: [PHP] Online Form Creation

2011-12-22 Thread Christopher Lee
On Dec 21, 2011, at 2:14 AM, Tedd Sperling wrote:

I don't see a problem here.

1. Figure out how to create a HTML form (Investigate HTML tables).
2. Then write a PHP that will scrub the data and submit it to MySQL.

The length and layout of the forms are of no significance.

This is basic html/php -- try creating something and submit your work for our 
review. If you want us to write the code for you, please look elsewhere.

Tedd,

I appreciate your reply to my post. In no way do I expect anyone to code for 
me. If that were the case I would hire someone. I have posted to this list 
numerous times and, if I am not mistaken, the list is designed to ask for 
suggestions, which I did. Being rude does not help anyone.

I understand how to program radio buttons in a form that record 'instances' of 
a response. I just was not sure how to set-up a similar matrix to allow the 
user to enter a numerical value.

I will follow your suggestion and submit my work.

Best,

Christopher

-Original Message-
From: Tedd Sperling [mailto:tedd.sperl...@gmail.com]
Sent: Wednesday, December 21, 2011 12:05 PM
To: PHP-General List
Cc: Christopher Lee
Subject: Re: [PHP] Online Form Creation

On Dec 21, 2011, at 2:14 AM, Christopher Lee wrote:

 Hello All,

 I have two forms (see attached) that I would like to recreate and enable the 
 user to complete the form online. The data would be collected in a MySQL DB.

 http://ucensys.com/activities.pdf

 http://ucensys.com/guidelines.pdf

 You will see that the forms are in a matrix format. I am having trouble 
 figuring out the best way to create the form and ensure the data is collected 
 properly in the DB. Any suggestions would be greatly appreciated.

 Best,

 Christopher

I don't see a problem here.

1. Figure out how to create a HTML form (Investigate HTML tables).
2. Then write a PHP that will scrub the data and submit it to MySQL.

The length and layout of the forms are of no significance.

This is basic html/php -- try creating something and submit your work for our 
review. If you want us to write the code for you, please look elsewhere.

Cheers,

tedd

_
t...@sperling.com
http://sperling.com

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Online Form Creation

2011-12-22 Thread Christopher Lee
Now, if you need help with writing the PHP that handles the data, then great!  
This is the right place to ask!  But we need to see code you attempted, in 
order to know your level of understanding, and so be able to guide better.

Hi Godiva, I appreciate all the great comments/suggestions from everyone. I 
probably could have worded my initial email a little better. Thank you to Tedd 
as well.

Best,

Christopher

-Original Message-
From: Govinda [mailto:govinda.webdnat...@gmail.com]
Sent: Thursday, December 22, 2011 12:15 PM
To: Christopher Lee
Cc: PHP-General List
Subject: Re: [PHP] Online Form Creation

 I understand how to program radio buttons in a form that record 'instances' 
 of a response. I just was not sure how to set-up a similar matrix to allow 
 the user to enter a numerical value.

Christopher,

Maybe Tedd was a little curt, but the language you used just made it seem like 
you had not done enough HTML work to really be able to sort out the difference 
between HTML problems (missing pieces in your understanding), and PHP problems.

HTML forms are totally independent of what you DO with the data that gets 
submitted when the user clicks the form's submit button.  HTML lets you lay out 
the form to look however you want..  (you can use HTML's table../table 
to achieve the visual layout you want).  PHP is needed to HANDLE the data 
(receive it from the submitting form and save it to a db).   When you say, You 
will see that the forms are in a matrix format, and, ...[you] are not sure 
how to set-up a similar matrix...  it sounds like an HTML problem.  If you do 
need help with HTML layout, then practice, Google, and consulting an HTML list 
will be your best bet.

Now, if you need help with writing the PHP that handles the data, then great!  
This is the right place to ask!  But we need to see code you attempted, in 
order to know your level of understanding, and so be able to guide better.

 I will follow your suggestion and submit my work.


-Govinda
This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Online Form Creation

2011-12-22 Thread Christopher Lee
My apologies if you took my comments as being rude. The point here is that if 
you want advice, then we need to see what is causing you problems. Giving us 
an outline of what you want isn't giving us anything other than This is what 
I want -- with an implied Do it.

Hi Tedd, I apologize as well Tedd. Reading back over my email it was not worded 
the best. I appreciate the assistance and promise to be more through when 
posting. This is part of the growing pains for me as a newbie.

Best,

Chris

-Original Message-
From: Tedd Sperling [mailto:tedd.sperl...@gmail.com]
Sent: Thursday, December 22, 2011 1:43 PM
To: PHP-General List
Cc: Christopher Lee
Subject: Re: [PHP] Online Form Creation

On Dec 22, 2011, at 11:22 AM, Christopher Lee wrote:
 Tedd,

 I appreciate your reply to my post. In no way do I expect anyone to code for 
 me. If that were the case I would hire someone. I have posted to this list 
 numerous times and, if I am not mistaken, the list is designed to ask for 
 suggestions, which I did. Being rude does not help anyone.

 I understand how to program radio buttons in a form that record 'instances' 
 of a response. I just was not sure how to set-up a similar matrix to allow 
 the user to enter a numerical value.

 I will follow your suggestion and submit my work.

 Best,

 Christopher

Christopher:

My apologies if you took my comments as being rude. The point here is that if 
you want advice, then we need to see what is causing you problems. Giving us an 
outline of what you want isn't giving us anything other than This is what I 
want -- with an implied Do it.

My advice, the first step will be to create a form with elements like these:

http://rebel.lcc.edu/sperlt/citw229/examples/postform/index.php
http://rebel.lcc.edu/sperlt/citw229/examples/stickyradio/
http://rebel.lcc.edu/sperlt/citw229/examples/stickycheckbox/
http://rebel.lcc.edu/sperlt/citw229/examples/stickymultselect/

and then get it to work for you. If it fails, present it, and we'll comment.

Cheers,

tedd

PS: Everything you need for this first step is provided above. The next step 
will be cleaning the data and placing it into the database.


_
t...@sperling.com
http://sperling.com
This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Online Form Creation

2011-12-20 Thread Christopher Lee
Hello All,

I have two forms (see attached) that I would like to recreate and enable the 
user to complete the form online. The data would be collected in a MySQL DB.

http://ucensys.com/activities.pdf

http://ucensys.com/guidelines.pdf

You will see that the forms are in a matrix format. I am having trouble 
figuring out the best way to create the form and ensure the data is collected 
properly in the DB. Any suggestions would be greatly appreciated.

Best,

Christopher


This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.


[PHP] PHP based online survey tool

2011-11-26 Thread Christopher Lee
Hello All,

I am looking to develop an online survey for a non-profit. The user should be 
able to complete the survey and see the results in the form of a visualization 
(i.e. pie chart) upon completion. I found this tool 
(http://www.iscripts.com/survey/)  but not sure how good it is. Does anyone 
have any suggestions for PHP based online survey tools? Any suggestions would 
be greatly appreciated. Thank you all in advance.

Best,

Christopher
This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.


[PHP] RSS Feed

2011-11-15 Thread Christopher Lee
Hello All,

I am interested in importing RSS Feed content into a MySQL database and 
displaying the aggregated content on a website. I am thinking of developing the 
website within a CMS type framework (i.e. Drupal). If anyone can refer me to 
any resources in this area then that would be great. I hope that I have 
adequately explained my needs. Thank you all in advance for your help.

Best,

Christopher
This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.


RE: [PHP] RSS Feed

2011-11-15 Thread Christopher Lee
Hello Matijn,

Thank you for the response and the link. I had not tried Google but, instead, 
reached out to the list first. Thought I would get people who have developed 
similar tools with success..:-) I will certainly reference the link and give 
this  try.

Best,

Christopher

-Original Message-
From: Matijn Woudt [mailto:tijn...@gmail.com]
Sent: Tuesday, November 15, 2011 4:38 PM
To: Christopher Lee
Cc: php-general@lists.php.net
Subject: Re: [PHP] RSS Feed

Hi,

Have you tried google?
I tried and top hit was this one:
http://stackoverflow.com/questions/1501394/writing-an-rss-feed-to-mysql-using-php

I guess that's all you need.

Matijn

On Tue, Nov 15, 2011 at 9:30 PM, Christopher Lee ct...@ucensys.com wrote:
 Hello All,

 I am interested in importing RSS Feed content into a MySQL database and 
 displaying the aggregated content on a website. I am thinking of developing 
 the website within a CMS type framework (i.e. Drupal). If anyone can refer me 
 to any resources in this area then that would be great. I hope that I have 
 adequately explained my needs. Thank you all in advance for your help.

 Best,

 Christopher
 This message is for the designated recipient only and may contain privileged, 
 proprietary, or otherwise private information. If you have received it in 
 error, please notify the sender immediately and delete the original. Any 
 other use of the email by you is prohibited.

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.


RE: [PHP] Friday Distraction

2011-10-21 Thread Christopher Lee
-Original Message-
From: Govinda [mailto:govinda.webdnat...@gmail.com]
Sent: Friday, October 21, 2011 4:31 PM
To: Tedd Sperling
Cc: PHP General
Subject: Re: [PHP] Friday Distraction

 Not meaning to be ignorant, but why?

 What's the point here?

 I have grandkids and about a dozen other species of relatives/friends trying 
 to get me to do stuff (i.e., like/friend/post/reply/accept) on FaceBook et 
 al, but I don't see the point. It looks like a total waste of time. Why 
 should I care if someone post something on their FaceBook account? I would 
 rather spend my time programming, teaching programming, and reading about 
 programming.

 Maybe I'm just getting too old for this stuff.

 Cheers,

 tedd

First, I hope that I am posting my response to Tedd correctly (no top posts..). 
Second, I totally agree with Tedd and I am only 36...:-)

Best,

Christopher


Tedd,
Your naturalness is always endearing, even when you play grumpy.  ;-)

It may seem like overly zealous waste of technology.. but look at it from 
another angle - It's just plain ole (ancient) human need for social 
interaction... piped through the latest tools.
The girls anyway certainly love FaceBook, et al., for the same reasons they 
ever loved the chance to compare social notes.

I did not use the takethislollipop.com app, so I don't know either what is its 
point (I hesitate like others said they do, to let apps grab all my FB data), 
but here I was just commenting on FB and social apps in general.

From a programmer's perspective, I would say that selling things is just as 
boring as aimless socializing.  WHAT ARE YOU programming anyway?  ;-) We 
programmers just keep track of other peoples' details... and once the novelty 
of solving problems (for solving sake) wears off, then it seems to me that 
programming, as such, is no more interesting, in the end, than the stuff the 
code serves.

What does truly uplifting/evolutionary code look like anyway?

-Govinda
--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
http://www.php.net/unsub.php

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] book quest

2011-09-28 Thread Christopher Lee
I agree with Daniel. I would be willing to contribute to that type of 
collaborative initiative.

Best,

Christopher Lee

-Original Message-
From: paras...@gmail.com [mailto:paras...@gmail.com] On Behalf Of Daniel Brown
Sent: Wednesday, September 28, 2011 7:24 PM
To: Andy McKenzie
Cc: php-general@lists.php.net
Subject: Re: [PHP] book quest

On Wed, Sep 28, 2011 at 19:13, Andy McKenzie amckenz...@gmail.com wrote:

 I agree with Bastien -- I've had great luck with the PHP books.
 Beginning PHP4 has a permanent place on my shelf, even though PHP4
 is outdated.  Beginning PHP5.3 hasn't quite supplanted it as a
 concept book, but is my go-to for here's a way to solve this
 particular problem using a new version of PHP book.

I'm still waiting for the day when folks on this list get together and say, 
let's put all of our notes together, as beginners and intermediates, and put 
together a book for the newcomers, from the newcomers, by the newcomers, who 
can relate to them without the taint of overexperience.

If properly presented, it would not only be easy to shop to publishers, but 
it could also be one of the first truly collaborative publications to exist on 
biological remnants.

--
/Daniel P. Brown
Network Infrastructure Manager
http://www.php.net/

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
http://www.php.net/unsub.php

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP frameworks

2011-08-05 Thread Christopher Lee
Hello,

I am new to PHP and wanted to ask a question which I think is related to this 
discussion thread. What are you referring to when using the term PHP 
Framework? I downloaded Eclipse-JEE with PHP Development Tools. Would this 
development environment constitute a PHP Framework?

Best,

Christopher

From: Laruence [larue...@baidu.com]
Sent: Sunday, July 24, 2011 11:19 PM
To: Floyd Resler
Cc: PHP
Subject: Re: [PHP] PHP frameworks

Hi:

if you have high performance need, you can considering Yaf( a PHP
framework which is build in PHP extension)

http://pecl.php.net/package/Yaf

thanks

Best regards

惠新宸 Xinchen Hui
http://www.laruence.com/


On 2011/7/22 20:38, Floyd Resler wrote:
 On Jul 22, 2011, at 8:33 AM, Richard Quadling wrote:

 On 22 July 2011 13:26, Floyd Reslerfres...@adex-intl.com  wrote:
 On Jul 21, 2011, at 11:41 PM, Micky Hulse wrote:

 On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzienos...@mckenzies.net  
 wrote:
 A la CakePHP.  Will automagically build controllers and views for the
 admin of your tables/models if you wish.
 Oooh, interesting! I will check out CakePHP! Thanks for tip! :)

 I actually use my own framework.  I needed a very light weight, flexible 
 framework.  I designed it from the ground up to be very flexible and to use 
 AJAX and jQuery on the client side.  If you'd be interested in check it 
 out, just let me know and I'll give you a link to the source code.

 Take care,
 Floyd

 http://www.brandonsavage.net/why-every-developer-should-write-their-own-framework/

 Good article!  I knew there was a reason why I never released mine but just 
 offer it up on occasion to someone who might find it useful!  :)

 Take care,
 Floyd



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread Christopher Lee
I would definitely be interested in working on/developing the user manual for 
the project. You have my interest.

Best,

Christopher

From: jean-baptiste verrey [jeanbaptiste.ver...@gmail.com]
Sent: Tuesday, June 28, 2011 4:24 PM
To: php-general@lists.php.net
Subject: [PHP] best ways to recruit volunteers for a PHP framework

Hi everybody,

I have developed an ORM framework in PHP for the last 2 years and it's
becoming a more professional and nice solution so before doing a
new complete revamp I am going to look for volunteer developers to do a real
good version.

But I am wondering what would be the best and clearest way to present the
 project in order to get some people interested in it ?

I was thinking about
- showing the previous versions
- showing use cases
- showing unit testing (I'm doing test driven development)
- a short user manual (the project doesn't have any user manual yet!)

Thanks in advance!
This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php