Search found 8 matches
- Tue Dec 14, 2004 8:56 pm
- Forum: PHP - Code
- Topic: A little help understanding how to use functions
- Replies: 10
- Views: 750
- 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
any help would be great. Thanks
- 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...
- 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...
- 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 ?
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- Tue Nov 09, 2004 10:42 pm
- Forum: PHP - Code
- Topic: Help, im a newb (something with dates)
- Replies: 7
- Views: 654
- Tue Nov 09, 2004 9:23 pm
- Forum: PHP - Code
- Topic: Help, im a newb (something with dates)
- Replies: 7
- Views: 654
- 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 { $d++; echo $d . "<br>"; } 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...