Re: [nyphp-talk] displaying dates in php

2006-12-26 Thread selyah
thanks for your response. I have not edit the codeas yet but here is the full code for you to see. Ian addEm.doc Description: 448786389-addEm.doc ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006

Re: [nyphp-talk] displaying dates in php

2006-12-25 Thread Shadab Wadiwala
Hi, The reply you got from [EMAIL PROTECTED] is absolutely perfect. The only thing you should remember is that in your PHP code, you should include the following lines --- $month = $_POST['month']; $year = $_POST['year']; etc ... at the beginning of the code.

Re: [nyphp-talk] displaying dates in php

2006-12-25 Thread jface
Your code displays fine for me. You can grab the data after the form has been submitted as POST data. After the form is submitted, the selected values will be stored like: $month = $_POST['month']; $year = $_POST['year']; echo $month . "" . $year; etc, etc Don't forget to add in your opening

Re: [nyphp-talk] displaying dates in php

2006-12-25 Thread selyah
Hello Shadab : first, thaks for trying to help. attached is a copy of the portion of the code thast deals with the date pull down. I would like to know how to code the output so that the date that is selected is displayed in a output form. thanks Shadab Wadiwala <[EMAIL PROTECTED]> wrote: H

Re: [nyphp-talk] displaying dates in php

2006-12-25 Thread Shadab Wadiwala
Hi, Still I am not clear with your question , Can u mail me the Source Code , screen shot etc... So that I can help you., I am sure I can help u out. http://shadabworld.110mb.com Shadab .I. Wadiwala selyah <[EMAIL PROTECTED]> wrote: thanks for the response,but tha

Re: [nyphp-talk] displaying dates in php

2006-12-25 Thread selyah
thanks for the response,but that command gives me the date from the computer, i need the date that was selected from the pull-down, (unless my code is not cooded properly) do you have an example of using the date() function with a user defined date pullown? thanks Shadab Wadiwala <[EMAIL PROTEC

Re: [nyphp-talk] displaying dates in php

2006-12-24 Thread Shadab Wadiwala
Hi , This information will surely help you out !! date( ) - string date ( string date_format [, int timestamp] ) Users like to have their dates in a variety of formats, so PHP lets you convert time

[nyphp-talk] displaying dates in php

2006-12-24 Thread selyah
Dear nyphp: I am very new to php programming and need some assistance relating to displaying to dates using php. I wrote a script that involves menu pull-downs for dates that should appear into a form as the end result. I have the form into a table and all of the other td's appear, except the da