Re: [PHP-DB] email question

2005-03-06 Thread anirudh dutt
, sendmail). u probably didn't have one on ur home (windows) comp but ur isp had it. -- ]# Anirudh Dutt ...pilot of the storm who leaves no trace like thoughts inside a dream -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] changing output method

2005-03-04 Thread anirudh dutt
put echo mysql_num_rows($result); before while ($line = mysql_fetch_array($result)) and add print_r($line) inside the while loop is $line empty? paste _some_ of that output. On Fri, 04 Mar 2005 10:52:59 +0530, chintan [EMAIL PROTECTED] wrote: and as aniruddh's suggestion i was unable to

Re: [PHP-DB] onClick

2005-03-02 Thread anirudh dutt
. considering that register_globals is off in ur case, it won't make a difference. imho, style=spockit is illogical/style to use the value of a non-existent variable (or assign it to another). -- ]# Anirudh Dutt ...pilot of the storm who leaves no trace like thoughts inside a dream -- PHP

Re: [PHP-DB] changing output method

2005-03-01 Thread anirudh dutt
wehn u do this. google. hth -- ]# Anirudh Dutt ...pilot of the storm who leaves no trace like thoughts inside a dream -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] onClick

2005-03-01 Thread anirudh dutt
['cloningView']) == 'View') depending on paranoia level, not that it'll help but i bet it makes u feel better ;-) but that can be faked quite easily. just make sure u check all GPC variables before using them. at the minimum, check if they exist. -- ]# Anirudh Dutt ...pilot of the storm who leaves

Re: [PHP-DB] onClick

2005-03-01 Thread anirudh dutt
. well, not unless u come up with some really intricate algo. -- ]# Anirudh Dutt ...pilot of the storm who leaves no trace like thoughts inside a dream -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] fread()

2005-02-21 Thread anirudh dutt
, filesize($filename)); fclose($handle); ? -- ]# Anirudh Dutt ...pilot of the storm who leaves no trace like thoughts inside a dream -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Re: Newbie Questions

2004-09-06 Thread anirudh dutt
Well, I have this: $result=mysql_query('SELECT * FROM $table ORDER BY lastname, street, housenum ASC'); if u're trying to use variables like $table in the query (which i think u are), they need to be in double quotes : not single quotes. so the line should be: