here is the code i wrote
i didn't miss the $ sign
and it works fine on web
but returns the error message when i use it on localhost


<?
@ $db = mysql_connect("localhost");
mysql_select_db("cds");
$test_tr = mysql_query("select name from newpcgames order by gameid desc LIMIT 0,
10");
$test_tr1 = mysql_query("select name from newpcgames order by gameid desc LIMIT 10,
20");



while($record = mysql_fetch_array($test_tr)) {

$record1= mysql_fetch_array($test_tr1);

echo "
<TR bgColor=#475674>
<TD onmouseover=\"this.bgColor='000000'\" onmouseout=\"this.bgColor='475674'\" bgColor=#475674 width=\"50%\">
<DIV align=left><FONT
color=#ffffff size=1><strong>";
echo stripslashes($record[name]);
echo "</strong></td><td> </td>";
echo "<TD onmouseover=\"this.bgColor='000000'\" onmouseout=\"this.bgColor='475674'\" bgColor=#475674 width=\"50%\">
<DIV align=left><FONT
color=#ffffff size=1><strong>";
echo stripslashes($record1[name]);
echo "</strong></td>
</tr> ";
}



?>



From: "Cal Evans" <[EMAIL PROTECTED]>
To: "Ahmed Abdelaliem" <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]>
Subject: Re: [PHP-DB] Problem with php/mysql and ISS on windows XP profeesional
Date: Mon, 2 Jun 2003 09:52:21 -0500


Sounds like you left off a $ when using a variable.  I would take a look at
line 158, find the variable name and make sure it's $name. Disabling the
error will cause the message to go away but not fix the problem.

humbly,
=C=
* Cal Evans
* http://www.christianperformer.com
* Stay plugged into your audience
* The measure of a programmer is not the number of lines of code he writes
but the number of lines he does not have to write.
*

----- Original Message -----
From: "Ahmed Abdelaliem" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 02, 2003 9:50 AM
Subject: [PHP-DB] Problem with php/mysql and ISS on windows XP profeesional


> hi > i use php and mysql on IIS server on windows xp professional > when i select anything from the database i get this : > "Notice: Use of undefined constant name - assumed 'name' in > d:\inetpub\wwwroot\EGYCDS\index.php on line 158 > Spy Hunter" > > while evrything is going fine when i upload it on the web and it returns > only "Spy Hunter" > > i think i have to disable this eroor message only > can any one tell me how i disable that error message > > _________________________________________________________________ > Help STOP SPAM with the new MSN 8 and get 2 months FREE* > http://join.msn.com/?page=features/junkmail > > > -- > PHP Database Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >


-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


_________________________________________________________________
Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail



-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to