Re: [PHP] Links with parameters in DB

2004-08-19 Thread Matt M.
Original Message - > From: "Jay Blanchard" <[EMAIL PROTECTED]> > To: "WebMaster. Radio ECCA" <[EMAIL PROTECTED]>; > <[EMAIL PROTECTED]> > Sent: Thursday, August 19, 2004 1:38 PM > Subject: RE: [PHP] Links with parameters in DB > > [s

RE: [PHP] Links with parameters in DB

2004-08-19 Thread Jay Blanchard
[snip] [snip] I tried what you said but i get an eval error: Parse error: parse error, unexpected '=' in /index.php(135) : eval()'d code on line 1 [/snip] You will probably have to escape the equals sign [/snip] Have you RTFM on eval? http://www.php.net/eval You have to use valid PHP code. You

RE: [PHP] Links with parameters in DB

2004-08-19 Thread Jay Blanchard
[snip] I tried what you said but i get an eval error: Parse error: parse error, unexpected '=' in /index.php(135) : eval()'d code on line 1 [/snip] You will probably have to escape the equals sign -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

Re: [PHP] Links with parameters in DB

2004-08-19 Thread WebMaster. Radio ECCA
TECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, August 19, 2004 1:38 PM Subject: RE: [PHP] Links with parameters in DB [snip] It doesn´t work, I have other fields in the DB apart from the field 'Link', so if I use $link = eval($result); I get a parse error. Apart from that, I have

RE: [PHP] Links with parameters in DB

2004-08-19 Thread Jay Blanchard
[snip] It doesn´t work, I have other fields in the DB apart from the field 'Link', so if I use $link = eval($result); I get a parse error. Apart from that, I have to write the name of the field (link), if not the server won´t know the field I´m refering to. [/snip] Then did you eval that? I meant

Re: [PHP] Links with parameters in DB

2004-08-19 Thread WebMaster. Radio ECCA
From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "WebMaster. Radio ECCA" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, August 19, 2004 1:28 PM Subject: RE: [PHP] Links with parameters in DB [snip] $i=0; $q="select * from links'"; while ($i

RE: [PHP] Links with parameters in DB

2004-08-19 Thread Jay Blanchard
[snip] $i=0; $q="select * from links'"; while ($ihttp://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Links with parameters in DB

2004-08-19 Thread Jay Blanchard
[snip] $link=eval(mysql_result($result,$i,"link")); [/snip] Try just eval on the field you pull from the database... echo eval($databaseItem) then work your processing. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php