RE: [PHP] tie string value together

2001-01-14 Thread Jason Murray
like below? $Birthdate = $year$monthday; And I will insert value in $Birthdate into table. Not quite. right idea, wrong syntax. You're just doing a simple string concatenation, so what you actually want is this: $Birthdate = $year . $month . $day; Jason -- Jason Murray [EMAIL PROTECTED

RE: [PHP] date comparison

2001-01-14 Thread Jason Murray
YS, then you'll want to substitute in a specific year in the mktime() statements above, as you'll otherwise end up with the number of days between your exact DATES of birth. Jason -- Jason Murray [EMAIL PROTECTED] Web Design Team, Melbourne IT Fetch the comfy chair! -- PHP General Mailing List

RE: [PHP] I once saw a site where php codes, algorithms specially, where posted.

2001-01-14 Thread Jason Murray
It has px...something...i cannot remember the exact site. could someone point me to that site? http://px.sklar.com Jason -- Jason Murray [EMAIL PROTECTED] Web Design Team, Melbourne IT Fetch the comfy chair! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

RE: [PHP] date comparison II

2001-01-14 Thread Jason Murray
( which of course we can easily tell that $date1 come before $date2). Can I use the sniplet below: Yep, you can use a simple conversion in that case as long as its YMD :) Jason -- Jason Murray [EMAIL PROTECTED] Web Design Team, Melbourne IT Fetch the comfy chair! -- PHP General Mailing List

Re: [PHP] php binary?

2001-01-11 Thread Jason Murray
tand alone, do not forget that you can use other languages, too. Regards, Jason -- Jason Murray Developer jWeb New Media Design 1 877 525 jWEB -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contac

RE: [PHP] mixing HTML and PHP code

2001-01-11 Thread Jason Murray
;); ? There's advantages and disadvantages to both our ways, really. It's not worth an in-depth discussion because I think I've just sent everyone on the list to sleep as-is. But our way works for us just as well as your way works for you :) Jason -- Jason Murray [EMAIL PROTECTED] Web

RE: [PHP] mixing HTML and PHP code

2001-01-11 Thread Jason Murray
emacs sucks! vi forever! :P Yes, I think its about time for another round of What Editor Is The Most Awesomest Best And R0xx0rz The World! :) Jason -- Jason Murray [EMAIL PROTECTED] Web Design Team, Melbourne IT Fetch the comfy chair! -- PHP General Mailing List (http://www.php.net

RE: [PHP] Limit image height/width on upload

2001-01-11 Thread Jason Murray
Is there a way to limit the image size with php? You would have to use some image manipulation functions to look at the file once it's been uploaded. Jason -- Jason Murray [EMAIL PROTECTED] Web Design Team, Melbourne IT Fetch the comfy chair! -- PHP General Mailing List (http://www.php.net

<    1   2   3   4   5   6