[PHP] Re: Whats wrong with this statement.

2003-12-13 Thread Justin Patrin
Philip J. Newman wrote: $websiteUrl="http://www.philipnz.com/";; $websiteEmail="[EMAIL PROTECTED]"; // CHECK TO SEE IF DATA MATCHS WHATS IN THE DATABASE. $sql = "SELECT hUrl,hContactEmail FROM hyperlinks_data"; $sql_result = mysql_query($sql, $connection) or die ("Could not get Query"); $exi

[PHP] Re: whats wrong with this?

2002-08-30 Thread Richard Lynch
> if($day = $system_day){ > >the problem i am experiencing is that it seems the "if" statement is setting >the $day value to equal $system_day instead of comparing their values >if i add That's because you have only one = sign there. = by itself does the assignment (setting a value) == does

[PHP] Re: Whats wrong with getimagesize ??

2002-03-19 Thread andy
hi.. foud the error. For everybody who might cope with the same error: the prob was that getimagesize requires a path name without protocol like: /pictures/12.gif http://server.com/pictures/12.gif does not work with htaccess and imagesize Thats it. easy hah :-) Andy "Andy" <[EMAIL PROTECTED]>

[PHP] Re: whats wrong?

2001-08-01 Thread Richard Lynch
> > "> You are using the "short open tag" of http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

[PHP] Re: whats wrong?

2001-07-31 Thread Philip Olson
Read this : Using Strings : - http://www.zend.com/zend/tut/using-strings.php Notice : echo "This will give a "parse error" to us"; echo "This will not give a \"parse error\" to us"; echo "This won't either