Search found 8 matches

by chadbobb
Tue Dec 14, 2004 8:56 pm
Forum: PHP - Code
Topic: A little help understanding how to use functions
Replies: 10
Views: 750

but what is something you can do with them. what is there purpose?
by chadbobb
Tue Dec 14, 2004 6:43 pm
Forum: PHP - Code
Topic: A little help understanding how to use functions
Replies: 10
Views: 750

A little help understanding how to use functions

Can someone expain how to use a function a little for me please. I don't really understand a lot about what i can do with the arguments, probably because i don't understand what an argument is. php.net doesn't do a good job explaining it in the manual.

any help would be great. Thanks
by chadbobb
Sun Dec 12, 2004 1:15 am
Forum: PHP - Code
Topic: Form to go with my html
Replies: 3
Views: 221

whoa. I think i kinda understood what you just said, but im still a php newb. i figured out what you were saying. Now i need help with something else, lol I got help with the time stuff of it also a while back. what i want to do is also be able to go into negative days. Is there anyway i can do that...
by chadbobb
Fri Dec 10, 2004 1:16 pm
Forum: PHP - Code
Topic: Form to go with my html
Replies: 3
Views: 221

Form to go with my html

I got some help here a while ago and i got this below. I added a little bit to it to make it work with tables and stuff. But for some reason i can't get form to show up in wher i want them to. I keep getting an error that says Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in /h...
by chadbobb
Tue Nov 09, 2004 10:52 pm
Forum: PHP - Code
Topic: Help, im a newb (something with dates)
Replies: 7
Views: 654

thats fine.

I should probably ask about what you did for that script, that way i can learn from it. I see what you did for most of it. But why did you have to this ?

Code: Select all

$numsec = 86400 * $x; //Multiply seconds by num_days_future
by chadbobb
Tue Nov 09, 2004 10:42 pm
Forum: PHP - Code
Topic: Help, im a newb (something with dates)
Replies: 7
Views: 654

I think that will do it. Thanks a bunch.

BTW is your name jacob?
by chadbobb
Tue Nov 09, 2004 9:23 pm
Forum: PHP - Code
Topic: Help, im a newb (something with dates)
Replies: 7
Views: 654

Im sorry i messed up in my original descriptinon. I also want it to list all the days in between today and the next 15 days.

thanks for helping though.

how would i go about having it show each day.
by chadbobb
Mon Nov 08, 2004 8:30 pm
Forum: PHP - Code
Topic: Help, im a newb (something with dates)
Replies: 7
Views: 654

Help, im a newb (something with dates)

I want display the date of today and 15 days into the future <?php $d=date(" d "); do &#123; $d++; echo $d . "<br>"; &#125; while ($d<15); ?> That is what i came up with, with the very little i know about php, but i cant get it to work it just gives todays day. And php.ne...